ETH Price: $3,026.55 (+2.27%)
Gas: 2 Gwei

Token

Hail Draconis (HD)
 

Overview

Max Total Supply

435 HD

Holders

174

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0x7926ed26f751e17bedd0207a87cdfc12a8fd9fb6
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:
HD1155

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-07-27
*/

// Sources flattened with hardhat v2.3.0 https://hardhat.org

// File openzeppelin-solidity/contracts/utils/introspection/[email protected]

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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


// File openzeppelin-solidity/contracts/token/ERC1155/[email protected]



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-solidity/contracts/token/ERC1155/[email protected]



pragma solidity ^0.8.0;

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {

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

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


// File openzeppelin-solidity/contracts/token/ERC1155/extensions/[email protected]



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-solidity/contracts/utils/[email protected]



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-solidity/contracts/utils/[email protected]



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-solidity/contracts/utils/introspection/[email protected]



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-solidity/contracts/token/ERC1155/[email protected]



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_);
    }



    /**
     * Transfer to multiple accounts
     */
    function sendToMany(
            address from,
            address[] memory to,
            uint256 id,
            uint256 amount,
            bytes memory data
        )
        public
        virtual

        {
        for(uint i = 0; i< to.length; i++){
        safeTransferFrom(from, to[i], id, amount, data);
         }
    }



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


    function uri(uint256) external 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-solidity/contracts/token/ERC1155/extensions/[email protected]



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-solidity/contracts/security/[email protected]



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-solidity/contracts/token/ERC1155/extensions/[email protected]



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-solidity/contracts/utils/[email protected]



pragma solidity ^0.8.0;

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

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

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

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

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

}


// File openzeppelin-solidity/contracts/access/[email protected]



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 Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

    /**
     * @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 Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if(!hasRole(role, account)) {
            revert(string(abi.encodePacked(
                "AccessControl: account ",
                Strings.toHexString(uint160(account), 20),
                " is missing role ",
                Strings.toHexString(uint256(role), 32)
            )));
        }
    }

    /**
     * @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 onlyRole(getRoleAdmin(role)) {
        _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 onlyRole(getRoleAdmin(role)) {
        _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-solidity/contracts/utils/structs/[email protected]



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] = valueIndex; // Replace lastvalue's index to valueIndex

            // 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-solidity/contracts/access/[email protected]



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 contracts/1155Preset.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 HD1155 is Context, AccessControlEnumerable, ERC1155Burnable, ERC1155Pausable {
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");
    
    string public name;
    string public symbol;
    address private _owner;
    mapping(uint256 => string) private metadata;
    
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE`, and `PAUSER_ROLE` to the account that
     * deploys the contract.
     * 
     * add in _owner for NFT marketplace compatibility
     */
    constructor(string memory _uri) ERC1155(_uri) {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
        _owner = msg.sender;
        emit OwnershipTransferred(address(0), _owner);
        _setupRole(MINTER_ROLE, _msgSender());
        _setupRole(PAUSER_ROLE, _msgSender());
        name = "Hail Draconis";
        symbol = "HD";
    }

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


    /**
     * 
     * This implementation allows you to set a tokenURI for each token ID.
     *
     */
    function setTokenUri(uint256 id, string memory _metadata) public virtual {
        require(hasRole(MINTER_ROLE, _msgSender()), "ERC1155PresetMinterPauser: must have minter role to setTokenURI");
        metadata[id] = _metadata;
    }

    function uri(uint256 id) public view override returns(string memory) {
        return metadata[id];
      }



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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"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":[{"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":"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":"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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"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":"sendToMany","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":"uint256","name":"id","type":"uint256"},{"internalType":"string","name":"_metadata","type":"string"}],"name":"setTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162003535380380620035358339810160408190526200003491620003c1565b80620000408162000175565b506005805460ff191690556200006160006200005b6200018e565b62000192565b600880546001600160a01b0319163317908190556040516001600160a01b0391909116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3620000dc7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66200005b6200018e565b6200010b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6200005b6200018e565b60408051808201909152600d8082526c4861696c20447261636f6e697360981b602090920191825262000141916006916200031b565b5060408051808201909152600280825261121160f21b60209092019182526200016d916007916200031b565b5050620004ea565b80516200018a9060049060208401906200031b565b5050565b3390565b620001a98282620001d560201b62000f631760201c565b6000828152600160209081526040909120620001d091839062000f71620001e1821b17901c565b505050565b6200018a828262000201565b6000620001f8836001600160a01b0384166200028b565b90505b92915050565b6200020d8282620002da565b6200018a576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620002476200018e565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600062000299838362000303565b620002d157508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155620001fb565b506000620001fb565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b60009081526001919091016020526040902054151590565b828054620003299062000497565b90600052602060002090601f0160209004810192826200034d576000855562000398565b82601f106200036857805160ff191683800117855562000398565b8280016001018555821562000398579182015b82811115620003985782518255916020019190600101906200037b565b50620003a6929150620003aa565b5090565b5b80821115620003a65760008155600101620003ab565b60006020808385031215620003d4578182fd5b82516001600160401b0380821115620003eb578384fd5b818501915085601f830112620003ff578384fd5b815181811115620004145762000414620004d4565b604051601f8201601f19908116603f011681019083821181831017156200043f576200043f620004d4565b81604052828152888684870101111562000457578687fd5b8693505b828410156200047a57848401860151818501870152928501926200045b565b828411156200048b57868684830101525b98975050505050505050565b600281046001821680620004ac57607f821691505b60208210811415620004ce57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61303b80620004fa6000396000f3fe608060405234801561001057600080fd5b50600436106101d95760003560e01c80638456cb5911610104578063ca15c873116100a2578063e63ab1e911610071578063e63ab1e9146103c0578063e985e9c5146103c8578063f242432a146103db578063f5298aca146103ee576101d9565b8063ca15c8731461037f578063d539139314610392578063d547741f1461039a578063d9eccc2e146103ad576101d9565b806391d14854116100de57806391d148541461034957806395d89b411461035c578063a217fddf14610364578063a22cb4651461036c576101d9565b80638456cb59146103195780638da5cb5b146103215780639010d07c14610336576101d9565b80632f2ff15d1161017c57806357f7789e1161014b57806357f7789e146102d85780635c975abb146102eb5780636b20c454146102f3578063731133e914610306576101d9565b80632f2ff15d1461028a57806336568abe1461029d5780633f4ba83a146102b05780634e1273f4146102b8576101d9565b80630e89341c116101b85780630e89341c1461023c5780631f7fdffa1461024f578063248a9ca3146102645780632eb2c2d614610277576101d9565b8062fdd58e146101de57806301ffc9a71461020757806306fdde0314610227575b600080fd5b6101f16101ec366004612364565b610401565b6040516101fe919061272f565b60405180910390f35b61021a6102153660046124cc565b61045d565b6040516101fe9190612724565b61022f610470565b6040516101fe9190612738565b61022f61024a366004612471565b6104fe565b61026261025d366004612296565b6105a0565b005b6101f1610272366004612471565b6105e8565b6102626102853660046120b5565b6105fd565b610262610298366004612489565b610866565b6102626102ab366004612489565b61088d565b6102626108af565b6102cb6102c6366004612411565b610901565b6040516101fe91906126e3565b6102626102e6366004612504565b610a20565b61021a610a75565b610262610301366004612226565b610a7f565b6102626103143660046123bf565b610ad4565b610262610b16565b610329610b66565b6040516101fe919061262c565b6103296103443660046124ab565b610b75565b61021a610357366004612489565b610b94565b61022f610bbd565b6101f1610bca565b61026261037a36600461232a565b610bcf565b6101f161038d366004612471565b610c9d565b6101f1610cb4565b6102626103a8366004612489565b610cc6565b6102626103bb3660046121bc565b610cd0565b6101f1610d22565b61021a6103d6366004612083565b610d46565b6102626103e936600461215a565b610d74565b6102626103fc36600461238d565b610f0e565b60006001600160a01b0383166104325760405162461bcd60e51b81526004016104299061288c565b60405180910390fd5b5060008181526002602090815260408083206001600160a01b03861684529091529020545b92915050565b600061046882610f86565b90505b919050565b6006805461047d90612e56565b80601f01602080910402602001604051908101604052809291908181526020018280546104a990612e56565b80156104f65780601f106104cb576101008083540402835291602001916104f6565b820191906000526020600020905b8154815290600101906020018083116104d957829003601f168201915b505050505081565b600081815260096020526040902080546060919061051b90612e56565b80601f016020809104026020016040519081016040528092919081815260200182805461054790612e56565b80156105945780601f1061056957610100808354040283529160200191610594565b820191906000526020600020905b81548152906001019060200180831161057757829003601f168201915b50505050509050919050565b6105ba600080516020612fe6833981519152610357610fc6565b6105d65760405162461bcd60e51b815260040161042990612aff565b6105e284848484610fca565b50505050565b60009081526020819052604090206001015490565b815183511461061e5760405162461bcd60e51b815260040161042990612cbc565b6001600160a01b0384166106445760405162461bcd60e51b815260040161042990612a25565b61064c610fc6565b6001600160a01b0316856001600160a01b031614806106725750610672856103d6610fc6565b61068e5760405162461bcd60e51b815260040161042990612a6a565b6000610698610fc6565b90506106a8818787878787611153565b60005b84518110156107f85760008582815181106106d657634e487b7160e01b600052603260045260246000fd5b60200260200101519050600085838151811061070257634e487b7160e01b600052603260045260246000fd5b60209081029190910181015160008481526002835260408082206001600160a01b038e1683529093529190912054909150818110156107535760405162461bcd60e51b815260040161042990612b4a565b61075d8282612dfc565b6002600085815260200190815260200160002060008c6001600160a01b03166001600160a01b0316815260200190815260200160002081905550816002600085815260200190815260200160002060008b6001600160a01b03166001600160a01b0316815260200190815260200160002060008282546107dd9190612dc5565b92505081905550505050806107f190612ebd565b90506106ab565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516108489291906126f6565b60405180910390a461085e818787878787611161565b505050505050565b6108708282611286565b60008281526001602052604090206108889082610f71565b505050565b61089782826112aa565b600082815260016020526040902061088890826112ec565b6108db7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610357610fc6565b6108f75760405162461bcd60e51b815260040161042990612b94565b6108ff611301565b565b606081518351146109245760405162461bcd60e51b815260040161042990612c73565b600083516001600160401b0381111561094d57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610976578160200160208202803683370190505b50905060005b8451811015610a18576109dd8582815181106109a857634e487b7160e01b600052603260045260246000fd5b60200260200101518583815181106109d057634e487b7160e01b600052603260045260246000fd5b6020026020010151610401565b8282815181106109fd57634e487b7160e01b600052603260045260246000fd5b6020908102919091010152610a1181612ebd565b905061097c565b509392505050565b610a3a600080516020612fe6833981519152610357610fc6565b610a565760405162461bcd60e51b81526004016104299061291b565b6000828152600960209081526040909120825161088892840190611e79565b60055460ff165b90565b610a87610fc6565b6001600160a01b0316836001600160a01b03161480610aad5750610aad836103d6610fc6565b610ac95760405162461bcd60e51b8152600401610429906129b2565b61088883838361136f565b610aee600080516020612fe6833981519152610357610fc6565b610b0a5760405162461bcd60e51b815260040161042990612aff565b6105e284848484611530565b610b427f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610357610fc6565b610b5e5760405162461bcd60e51b815260040161042990612bdf565b6108ff611612565b6008546001600160a01b031690565b6000828152600160205260408120610b8d908361166d565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6007805461047d90612e56565b600081565b816001600160a01b0316610be1610fc6565b6001600160a01b03161415610c085760405162461bcd60e51b815260040161042990612c2a565b8060036000610c15610fc6565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610c59610fc6565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610c919190612724565b60405180910390a35050565b600081815260016020526040812061046890611679565b600080516020612fe683398151915281565b6108978282611684565b60005b845181101561085e57610d1086868381518110610d0057634e487b7160e01b600052603260045260246000fd5b6020026020010151868686610d74565b80610d1a81612ebd565b915050610cd3565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205460ff1690565b6001600160a01b038416610d9a5760405162461bcd60e51b815260040161042990612a25565b610da2610fc6565b6001600160a01b0316856001600160a01b03161480610dc85750610dc8856103d6610fc6565b610de45760405162461bcd60e51b8152600401610429906129b2565b6000610dee610fc6565b9050610e0e818787610dff886116a3565b610e08886116a3565b87611153565b60008481526002602090815260408083206001600160a01b038a16845290915290205483811015610e515760405162461bcd60e51b815260040161042990612b4a565b610e5b8482612dfc565b60008681526002602090815260408083206001600160a01b038c81168552925280832093909355881681529081208054869290610e99908490612dc5565b92505081905550856001600160a01b0316876001600160a01b0316836001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051610eef929190612d94565b60405180910390a4610f058288888888886116fc565b50505050505050565b610f16610fc6565b6001600160a01b0316836001600160a01b03161480610f3c5750610f3c836103d6610fc6565b610f585760405162461bcd60e51b8152600401610429906129b2565b6108888383836117cd565b610f6d82826118ea565b5050565b6000610b8d836001600160a01b03841661196f565b60006001600160e01b03198216636cdb3d1360e11b1480610fb757506001600160e01b031982166303a24d0760e21b145b806104685750610468826119b9565b3390565b6001600160a01b038416610ff05760405162461bcd60e51b815260040161042990612d04565b81518351146110115760405162461bcd60e51b815260040161042990612cbc565b600061101b610fc6565b905061102c81600087878787611153565b60005b84518110156110e45783818151811061105857634e487b7160e01b600052603260045260246000fd5b60200260200101516002600087848151811061108457634e487b7160e01b600052603260045260246000fd5b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b0316815260200190815260200160002060008282546110cc9190612dc5565b909155508190506110dc81612ebd565b91505061102f565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516111359291906126f6565b60405180910390a461114c81600087878787611161565b5050505050565b61085e8686868686866119de565b611173846001600160a01b0316611a11565b1561085e5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906111ac9089908990889088908890600401612640565b602060405180830381600087803b1580156111c657600080fd5b505af19250505080156111f6575060408051601f3d908101601f191682019092526111f3918101906124e8565b60015b61125657611202612f04565b806308c379a0141561123c5750611217612f1b565b80611222575061123e565b8060405162461bcd60e51b81526004016104299190612738565b505b60405162461bcd60e51b81526004016104299061274b565b6001600160e01b0319811663bc197c8160e01b14610f055760405162461bcd60e51b815260040161042990612816565b61128f826105e8565b6112a08161129b610fc6565b611a17565b61088883836118ea565b6112b2610fc6565b6001600160a01b0316816001600160a01b0316146112e25760405162461bcd60e51b815260040161042990612d45565b610f6d8282611a7b565b6000610b8d836001600160a01b038416611afe565b611309610a75565b6113255760405162461bcd60e51b81526004016104299061285e565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611358610fc6565b604051611365919061262c565b60405180910390a1565b6001600160a01b0383166113955760405162461bcd60e51b815260040161042990612abc565b80518251146113b65760405162461bcd60e51b815260040161042990612cbc565b60006113c0610fc6565b90506113e081856000868660405180602001604052806000815250611153565b60005b83518110156114d157600084828151811061140e57634e487b7160e01b600052603260045260246000fd5b60200260200101519050600084838151811061143a57634e487b7160e01b600052603260045260246000fd5b60209081029190910181015160008481526002835260408082206001600160a01b038c16835290935291909120549091508181101561148b5760405162461bcd60e51b8152600401610429906128d7565b6114958282612dfc565b60009384526002602090815260408086206001600160a01b038c16875290915290932092909255508190506114c981612ebd565b9150506113e3565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516115229291906126f6565b60405180910390a450505050565b6001600160a01b0384166115565760405162461bcd60e51b815260040161042990612d04565b6000611560610fc6565b905061157281600087610dff886116a3565b60008481526002602090815260408083206001600160a01b0389168452909152812080548592906115a4908490612dc5565b92505081905550846001600160a01b031660006001600160a01b0316826001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516115fb929190612d94565b60405180910390a461114c816000878787876116fc565b61161a610a75565b156116375760405162461bcd60e51b8152600401610429906129fb565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611358610fc6565b6000610b8d8383611c15565b600061046882611c6e565b61168d826105e8565b6116998161129b610fc6565b6108888383611a7b565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106116eb57634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b61170e846001600160a01b0316611a11565b1561085e5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611747908990899088908890889060040161269e565b602060405180830381600087803b15801561176157600080fd5b505af1925050508015611791575060408051601f3d908101601f1916820190925261178e918101906124e8565b60015b61179d57611202612f04565b6001600160e01b0319811663f23a6e6160e01b14610f055760405162461bcd60e51b815260040161042990612816565b6001600160a01b0383166117f35760405162461bcd60e51b815260040161042990612abc565b60006117fd610fc6565b905061182d8185600061180f876116a3565b611818876116a3565b60405180602001604052806000815250611153565b60008381526002602090815260408083206001600160a01b0388168452909152902054828110156118705760405162461bcd60e51b8152600401610429906128d7565b61187a8382612dfc565b60008581526002602090815260408083206001600160a01b03808b16808652919093528184209490945551919291908516907fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62906118db9089908990612d94565b60405180910390a45050505050565b6118f48282610b94565b610f6d576000828152602081815260408083206001600160a01b03851684529091529020805460ff1916600117905561192b610fc6565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600061197b8383611c72565b6119b157508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610457565b506000610457565b60006001600160e01b03198216635a05180f60e01b1480610468575061046882611c8a565b6119ec86868686868661085e565b6119f4610a75565b1561085e5760405162461bcd60e51b815260040161042990612966565b3b151590565b611a218282610b94565b610f6d57611a39816001600160a01b03166014611caf565b611a44836020611caf565b604051602001611a559291906125b7565b60408051601f198184030181529082905262461bcd60e51b825261042991600401612738565b611a858282610b94565b15610f6d576000828152602081815260408083206001600160a01b03851684529091529020805460ff19169055611aba610fc6565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b60008181526001830160205260408120548015611c0b576000611b22600183612dfc565b8554909150600090611b3690600190612dfc565b90506000866000018281548110611b5d57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080876000018481548110611b8e57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260018901909152604090208490558654879080611bcf57634e487b7160e01b600052603160045260246000fd5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610457565b6000915050610457565b81546000908210611c385760405162461bcd60e51b81526004016104299061279f565b826000018281548110611c5b57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b5490565b60009081526001919091016020526040902054151590565b60006001600160e01b03198216637965db0b60e01b1480610468575061046882611e60565b60606000611cbe836002612ddd565b611cc9906002612dc5565b6001600160401b03811115611cee57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611d18576020820181803683370190505b509050600360fc1b81600081518110611d4157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611d7e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611da2846002612ddd565b611dad906001612dc5565b90505b6001811115611e41576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611def57634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110611e1357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611e3a81612e3f565b9050611db0565b508315610b8d5760405162461bcd60e51b8152600401610429906127e1565b6001600160e01b031981166301ffc9a760e01b14919050565b828054611e8590612e56565b90600052602060002090601f016020900481019282611ea75760008555611eed565b82601f10611ec057805160ff1916838001178555611eed565b82800160010185558215611eed579182015b82811115611eed578251825591602001919060010190611ed2565b50611ef9929150611efd565b5090565b5b80821115611ef95760008155600101611efe565b60006001600160401b03831115611f2b57611f2b612eee565b604051611f42601f8501601f191660200182612e91565b809150838152848484011115611f5757600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b038116811461046b57600080fd5b600082601f830112611f96578081fd5b81356020611fa382612da2565b604051611fb08282612e91565b838152828101915085830183850287018401881015611fcd578586fd5b855b85811015611ff257611fe082611f6f565b84529284019290840190600101611fcf565b5090979650505050505050565b600082601f83011261200f578081fd5b8135602061201c82612da2565b6040516120298282612e91565b838152828101915085830183850287018401881015612046578586fd5b855b85811015611ff257813584529284019290840190600101612048565b600082601f830112612074578081fd5b610b8d83833560208501611f12565b60008060408385031215612095578182fd5b61209e83611f6f565b91506120ac60208401611f6f565b90509250929050565b600080600080600060a086880312156120cc578081fd5b6120d586611f6f565b94506120e360208701611f6f565b935060408601356001600160401b03808211156120fe578283fd5b61210a89838a01611fff565b9450606088013591508082111561211f578283fd5b61212b89838a01611fff565b93506080880135915080821115612140578283fd5b5061214d88828901612064565b9150509295509295909350565b600080600080600060a08688031215612171578081fd5b61217a86611f6f565b945061218860208701611f6f565b9350604086013592506060860135915060808601356001600160401b038111156121b0578182fd5b61214d88828901612064565b600080600080600060a086880312156121d3578081fd5b6121dc86611f6f565b945060208601356001600160401b03808211156121f7578283fd5b61220389838a01611f86565b955060408801359450606088013593506080880135915080821115612140578283fd5b60008060006060848603121561223a578283fd5b61224384611f6f565b925060208401356001600160401b038082111561225e578384fd5b61226a87838801611fff565b9350604086013591508082111561227f578283fd5b5061228c86828701611fff565b9150509250925092565b600080600080608085870312156122ab578081fd5b6122b485611f6f565b935060208501356001600160401b03808211156122cf578283fd5b6122db88838901611fff565b945060408701359150808211156122f0578283fd5b6122fc88838901611fff565b93506060870135915080821115612311578283fd5b5061231e87828801612064565b91505092959194509250565b6000806040838503121561233c578182fd5b61234583611f6f565b915060208301358015158114612359578182fd5b809150509250929050565b60008060408385031215612376578182fd5b61237f83611f6f565b946020939093013593505050565b6000806000606084860312156123a1578081fd5b6123aa84611f6f565b95602085013595506040909401359392505050565b600080600080608085870312156123d4578182fd5b6123dd85611f6f565b9350602085013592506040850135915060608501356001600160401b03811115612405578182fd5b61231e87828801612064565b60008060408385031215612423578182fd5b82356001600160401b0380821115612439578384fd5b61244586838701611f86565b9350602085013591508082111561245a578283fd5b5061246785828601611fff565b9150509250929050565b600060208284031215612482578081fd5b5035919050565b6000806040838503121561249b578182fd5b823591506120ac60208401611f6f565b600080604083850312156124bd578182fd5b50508035926020909101359150565b6000602082840312156124dd578081fd5b8135610b8d81612fac565b6000602082840312156124f9578081fd5b8151610b8d81612fac565b60008060408385031215612516578182fd5b8235915060208301356001600160401b03811115612532578182fd5b8301601f81018513612542578182fd5b61246785823560208401611f12565b6000815180845260208085019450808401835b8381101561258057815187529582019590820190600101612564565b509495945050505050565b600081518084526125a3816020860160208601612e13565b601f01601f19169290920160200192915050565b60007f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000825283516125ef816017850160208801612e13565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351612620816028840160208801612e13565b01602801949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0386811682528516602082015260a06040820181905260009061266c90830186612551565b828103606084015261267e8186612551565b90508281036080840152612692818561258b565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906126d89083018461258b565b979650505050505050565b600060208252610b8d6020830184612551565b6000604082526127096040830185612551565b828103602084015261271b8185612551565b95945050505050565b901515815260200190565b90815260200190565b600060208252610b8d602083018461258b565b60208082526034908201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356040820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606082015260800190565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252818101527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604082015260600190565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252602b908201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b6020808252603f90820152600080516020612fc683398151915260408201527f68617665206d696e74657220726f6c6520746f20736574546f6b656e55524900606082015260800190565b6020808252602c908201527f455243313135355061757361626c653a20746f6b656e207472616e736665722060408201526b1dda1a5b19481c185d5cd95960a21b606082015260800190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526032908201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252603890820152600080516020612fc683398151915260408201527f68617665206d696e74657220726f6c6520746f206d696e740000000000000000606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252603b90820152600080516020612fc683398151915260408201527f686176652070617573657220726f6c6520746f20756e70617573650000000000606082015260800190565b6020808252603990820152600080516020612fc683398151915260408201527f686176652070617573657220726f6c6520746f20706175736500000000000000606082015260800190565b60208082526029908201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604082015268103337b91039b2b63360b91b606082015260800190565b60208082526029908201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604082015268040dad2e6dac2e8c6d60bb1b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b918252602082015260400190565b60006001600160401b03821115612dbb57612dbb612eee565b5060209081020190565b60008219821115612dd857612dd8612ed8565b500190565b6000816000190483118215151615612df757612df7612ed8565b500290565b600082821015612e0e57612e0e612ed8565b500390565b60005b83811015612e2e578181015183820152602001612e16565b838111156105e25750506000910152565b600081612e4e57612e4e612ed8565b506000190190565b600281046001821680612e6a57607f821691505b60208210811415612e8b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f191681016001600160401b0381118282101715612eb657612eb6612eee565b6040525050565b6000600019821415612ed157612ed1612ed8565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115610a7c57600481823e5160e01c90565b600060443d1015612f2b57610a7c565b6040516003193d81016004833e81513d6001600160401b038160248401118184111715612f5c575050505050610a7c565b8285019150815181811115612f7657505050505050610a7c565b843d8701016020828501011115612f9257505050505050610a7c565b612fa160208286010187612e91565b509094505050505090565b6001600160e01b031981168114612fc257600080fd5b5056fe455243313135355072657365744d696e7465725061757365723a206d757374209f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6a2646970667358221220ce678e064ffdade2ee3fa31645f2c9c59dfec623b1ead43b8cfcbeeabf44267b64736f6c6343000801003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101d95760003560e01c80638456cb5911610104578063ca15c873116100a2578063e63ab1e911610071578063e63ab1e9146103c0578063e985e9c5146103c8578063f242432a146103db578063f5298aca146103ee576101d9565b8063ca15c8731461037f578063d539139314610392578063d547741f1461039a578063d9eccc2e146103ad576101d9565b806391d14854116100de57806391d148541461034957806395d89b411461035c578063a217fddf14610364578063a22cb4651461036c576101d9565b80638456cb59146103195780638da5cb5b146103215780639010d07c14610336576101d9565b80632f2ff15d1161017c57806357f7789e1161014b57806357f7789e146102d85780635c975abb146102eb5780636b20c454146102f3578063731133e914610306576101d9565b80632f2ff15d1461028a57806336568abe1461029d5780633f4ba83a146102b05780634e1273f4146102b8576101d9565b80630e89341c116101b85780630e89341c1461023c5780631f7fdffa1461024f578063248a9ca3146102645780632eb2c2d614610277576101d9565b8062fdd58e146101de57806301ffc9a71461020757806306fdde0314610227575b600080fd5b6101f16101ec366004612364565b610401565b6040516101fe919061272f565b60405180910390f35b61021a6102153660046124cc565b61045d565b6040516101fe9190612724565b61022f610470565b6040516101fe9190612738565b61022f61024a366004612471565b6104fe565b61026261025d366004612296565b6105a0565b005b6101f1610272366004612471565b6105e8565b6102626102853660046120b5565b6105fd565b610262610298366004612489565b610866565b6102626102ab366004612489565b61088d565b6102626108af565b6102cb6102c6366004612411565b610901565b6040516101fe91906126e3565b6102626102e6366004612504565b610a20565b61021a610a75565b610262610301366004612226565b610a7f565b6102626103143660046123bf565b610ad4565b610262610b16565b610329610b66565b6040516101fe919061262c565b6103296103443660046124ab565b610b75565b61021a610357366004612489565b610b94565b61022f610bbd565b6101f1610bca565b61026261037a36600461232a565b610bcf565b6101f161038d366004612471565b610c9d565b6101f1610cb4565b6102626103a8366004612489565b610cc6565b6102626103bb3660046121bc565b610cd0565b6101f1610d22565b61021a6103d6366004612083565b610d46565b6102626103e936600461215a565b610d74565b6102626103fc36600461238d565b610f0e565b60006001600160a01b0383166104325760405162461bcd60e51b81526004016104299061288c565b60405180910390fd5b5060008181526002602090815260408083206001600160a01b03861684529091529020545b92915050565b600061046882610f86565b90505b919050565b6006805461047d90612e56565b80601f01602080910402602001604051908101604052809291908181526020018280546104a990612e56565b80156104f65780601f106104cb576101008083540402835291602001916104f6565b820191906000526020600020905b8154815290600101906020018083116104d957829003601f168201915b505050505081565b600081815260096020526040902080546060919061051b90612e56565b80601f016020809104026020016040519081016040528092919081815260200182805461054790612e56565b80156105945780601f1061056957610100808354040283529160200191610594565b820191906000526020600020905b81548152906001019060200180831161057757829003601f168201915b50505050509050919050565b6105ba600080516020612fe6833981519152610357610fc6565b6105d65760405162461bcd60e51b815260040161042990612aff565b6105e284848484610fca565b50505050565b60009081526020819052604090206001015490565b815183511461061e5760405162461bcd60e51b815260040161042990612cbc565b6001600160a01b0384166106445760405162461bcd60e51b815260040161042990612a25565b61064c610fc6565b6001600160a01b0316856001600160a01b031614806106725750610672856103d6610fc6565b61068e5760405162461bcd60e51b815260040161042990612a6a565b6000610698610fc6565b90506106a8818787878787611153565b60005b84518110156107f85760008582815181106106d657634e487b7160e01b600052603260045260246000fd5b60200260200101519050600085838151811061070257634e487b7160e01b600052603260045260246000fd5b60209081029190910181015160008481526002835260408082206001600160a01b038e1683529093529190912054909150818110156107535760405162461bcd60e51b815260040161042990612b4a565b61075d8282612dfc565b6002600085815260200190815260200160002060008c6001600160a01b03166001600160a01b0316815260200190815260200160002081905550816002600085815260200190815260200160002060008b6001600160a01b03166001600160a01b0316815260200190815260200160002060008282546107dd9190612dc5565b92505081905550505050806107f190612ebd565b90506106ab565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516108489291906126f6565b60405180910390a461085e818787878787611161565b505050505050565b6108708282611286565b60008281526001602052604090206108889082610f71565b505050565b61089782826112aa565b600082815260016020526040902061088890826112ec565b6108db7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610357610fc6565b6108f75760405162461bcd60e51b815260040161042990612b94565b6108ff611301565b565b606081518351146109245760405162461bcd60e51b815260040161042990612c73565b600083516001600160401b0381111561094d57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610976578160200160208202803683370190505b50905060005b8451811015610a18576109dd8582815181106109a857634e487b7160e01b600052603260045260246000fd5b60200260200101518583815181106109d057634e487b7160e01b600052603260045260246000fd5b6020026020010151610401565b8282815181106109fd57634e487b7160e01b600052603260045260246000fd5b6020908102919091010152610a1181612ebd565b905061097c565b509392505050565b610a3a600080516020612fe6833981519152610357610fc6565b610a565760405162461bcd60e51b81526004016104299061291b565b6000828152600960209081526040909120825161088892840190611e79565b60055460ff165b90565b610a87610fc6565b6001600160a01b0316836001600160a01b03161480610aad5750610aad836103d6610fc6565b610ac95760405162461bcd60e51b8152600401610429906129b2565b61088883838361136f565b610aee600080516020612fe6833981519152610357610fc6565b610b0a5760405162461bcd60e51b815260040161042990612aff565b6105e284848484611530565b610b427f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610357610fc6565b610b5e5760405162461bcd60e51b815260040161042990612bdf565b6108ff611612565b6008546001600160a01b031690565b6000828152600160205260408120610b8d908361166d565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6007805461047d90612e56565b600081565b816001600160a01b0316610be1610fc6565b6001600160a01b03161415610c085760405162461bcd60e51b815260040161042990612c2a565b8060036000610c15610fc6565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610c59610fc6565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610c919190612724565b60405180910390a35050565b600081815260016020526040812061046890611679565b600080516020612fe683398151915281565b6108978282611684565b60005b845181101561085e57610d1086868381518110610d0057634e487b7160e01b600052603260045260246000fd5b6020026020010151868686610d74565b80610d1a81612ebd565b915050610cd3565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205460ff1690565b6001600160a01b038416610d9a5760405162461bcd60e51b815260040161042990612a25565b610da2610fc6565b6001600160a01b0316856001600160a01b03161480610dc85750610dc8856103d6610fc6565b610de45760405162461bcd60e51b8152600401610429906129b2565b6000610dee610fc6565b9050610e0e818787610dff886116a3565b610e08886116a3565b87611153565b60008481526002602090815260408083206001600160a01b038a16845290915290205483811015610e515760405162461bcd60e51b815260040161042990612b4a565b610e5b8482612dfc565b60008681526002602090815260408083206001600160a01b038c81168552925280832093909355881681529081208054869290610e99908490612dc5565b92505081905550856001600160a01b0316876001600160a01b0316836001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051610eef929190612d94565b60405180910390a4610f058288888888886116fc565b50505050505050565b610f16610fc6565b6001600160a01b0316836001600160a01b03161480610f3c5750610f3c836103d6610fc6565b610f585760405162461bcd60e51b8152600401610429906129b2565b6108888383836117cd565b610f6d82826118ea565b5050565b6000610b8d836001600160a01b03841661196f565b60006001600160e01b03198216636cdb3d1360e11b1480610fb757506001600160e01b031982166303a24d0760e21b145b806104685750610468826119b9565b3390565b6001600160a01b038416610ff05760405162461bcd60e51b815260040161042990612d04565b81518351146110115760405162461bcd60e51b815260040161042990612cbc565b600061101b610fc6565b905061102c81600087878787611153565b60005b84518110156110e45783818151811061105857634e487b7160e01b600052603260045260246000fd5b60200260200101516002600087848151811061108457634e487b7160e01b600052603260045260246000fd5b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b0316815260200190815260200160002060008282546110cc9190612dc5565b909155508190506110dc81612ebd565b91505061102f565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516111359291906126f6565b60405180910390a461114c81600087878787611161565b5050505050565b61085e8686868686866119de565b611173846001600160a01b0316611a11565b1561085e5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906111ac9089908990889088908890600401612640565b602060405180830381600087803b1580156111c657600080fd5b505af19250505080156111f6575060408051601f3d908101601f191682019092526111f3918101906124e8565b60015b61125657611202612f04565b806308c379a0141561123c5750611217612f1b565b80611222575061123e565b8060405162461bcd60e51b81526004016104299190612738565b505b60405162461bcd60e51b81526004016104299061274b565b6001600160e01b0319811663bc197c8160e01b14610f055760405162461bcd60e51b815260040161042990612816565b61128f826105e8565b6112a08161129b610fc6565b611a17565b61088883836118ea565b6112b2610fc6565b6001600160a01b0316816001600160a01b0316146112e25760405162461bcd60e51b815260040161042990612d45565b610f6d8282611a7b565b6000610b8d836001600160a01b038416611afe565b611309610a75565b6113255760405162461bcd60e51b81526004016104299061285e565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611358610fc6565b604051611365919061262c565b60405180910390a1565b6001600160a01b0383166113955760405162461bcd60e51b815260040161042990612abc565b80518251146113b65760405162461bcd60e51b815260040161042990612cbc565b60006113c0610fc6565b90506113e081856000868660405180602001604052806000815250611153565b60005b83518110156114d157600084828151811061140e57634e487b7160e01b600052603260045260246000fd5b60200260200101519050600084838151811061143a57634e487b7160e01b600052603260045260246000fd5b60209081029190910181015160008481526002835260408082206001600160a01b038c16835290935291909120549091508181101561148b5760405162461bcd60e51b8152600401610429906128d7565b6114958282612dfc565b60009384526002602090815260408086206001600160a01b038c16875290915290932092909255508190506114c981612ebd565b9150506113e3565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516115229291906126f6565b60405180910390a450505050565b6001600160a01b0384166115565760405162461bcd60e51b815260040161042990612d04565b6000611560610fc6565b905061157281600087610dff886116a3565b60008481526002602090815260408083206001600160a01b0389168452909152812080548592906115a4908490612dc5565b92505081905550846001600160a01b031660006001600160a01b0316826001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516115fb929190612d94565b60405180910390a461114c816000878787876116fc565b61161a610a75565b156116375760405162461bcd60e51b8152600401610429906129fb565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611358610fc6565b6000610b8d8383611c15565b600061046882611c6e565b61168d826105e8565b6116998161129b610fc6565b6108888383611a7b565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106116eb57634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b61170e846001600160a01b0316611a11565b1561085e5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611747908990899088908890889060040161269e565b602060405180830381600087803b15801561176157600080fd5b505af1925050508015611791575060408051601f3d908101601f1916820190925261178e918101906124e8565b60015b61179d57611202612f04565b6001600160e01b0319811663f23a6e6160e01b14610f055760405162461bcd60e51b815260040161042990612816565b6001600160a01b0383166117f35760405162461bcd60e51b815260040161042990612abc565b60006117fd610fc6565b905061182d8185600061180f876116a3565b611818876116a3565b60405180602001604052806000815250611153565b60008381526002602090815260408083206001600160a01b0388168452909152902054828110156118705760405162461bcd60e51b8152600401610429906128d7565b61187a8382612dfc565b60008581526002602090815260408083206001600160a01b03808b16808652919093528184209490945551919291908516907fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62906118db9089908990612d94565b60405180910390a45050505050565b6118f48282610b94565b610f6d576000828152602081815260408083206001600160a01b03851684529091529020805460ff1916600117905561192b610fc6565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600061197b8383611c72565b6119b157508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610457565b506000610457565b60006001600160e01b03198216635a05180f60e01b1480610468575061046882611c8a565b6119ec86868686868661085e565b6119f4610a75565b1561085e5760405162461bcd60e51b815260040161042990612966565b3b151590565b611a218282610b94565b610f6d57611a39816001600160a01b03166014611caf565b611a44836020611caf565b604051602001611a559291906125b7565b60408051601f198184030181529082905262461bcd60e51b825261042991600401612738565b611a858282610b94565b15610f6d576000828152602081815260408083206001600160a01b03851684529091529020805460ff19169055611aba610fc6565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b60008181526001830160205260408120548015611c0b576000611b22600183612dfc565b8554909150600090611b3690600190612dfc565b90506000866000018281548110611b5d57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080876000018481548110611b8e57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260018901909152604090208490558654879080611bcf57634e487b7160e01b600052603160045260246000fd5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610457565b6000915050610457565b81546000908210611c385760405162461bcd60e51b81526004016104299061279f565b826000018281548110611c5b57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b5490565b60009081526001919091016020526040902054151590565b60006001600160e01b03198216637965db0b60e01b1480610468575061046882611e60565b60606000611cbe836002612ddd565b611cc9906002612dc5565b6001600160401b03811115611cee57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611d18576020820181803683370190505b509050600360fc1b81600081518110611d4157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611d7e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611da2846002612ddd565b611dad906001612dc5565b90505b6001811115611e41576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611def57634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110611e1357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611e3a81612e3f565b9050611db0565b508315610b8d5760405162461bcd60e51b8152600401610429906127e1565b6001600160e01b031981166301ffc9a760e01b14919050565b828054611e8590612e56565b90600052602060002090601f016020900481019282611ea75760008555611eed565b82601f10611ec057805160ff1916838001178555611eed565b82800160010185558215611eed579182015b82811115611eed578251825591602001919060010190611ed2565b50611ef9929150611efd565b5090565b5b80821115611ef95760008155600101611efe565b60006001600160401b03831115611f2b57611f2b612eee565b604051611f42601f8501601f191660200182612e91565b809150838152848484011115611f5757600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b038116811461046b57600080fd5b600082601f830112611f96578081fd5b81356020611fa382612da2565b604051611fb08282612e91565b838152828101915085830183850287018401881015611fcd578586fd5b855b85811015611ff257611fe082611f6f565b84529284019290840190600101611fcf565b5090979650505050505050565b600082601f83011261200f578081fd5b8135602061201c82612da2565b6040516120298282612e91565b838152828101915085830183850287018401881015612046578586fd5b855b85811015611ff257813584529284019290840190600101612048565b600082601f830112612074578081fd5b610b8d83833560208501611f12565b60008060408385031215612095578182fd5b61209e83611f6f565b91506120ac60208401611f6f565b90509250929050565b600080600080600060a086880312156120cc578081fd5b6120d586611f6f565b94506120e360208701611f6f565b935060408601356001600160401b03808211156120fe578283fd5b61210a89838a01611fff565b9450606088013591508082111561211f578283fd5b61212b89838a01611fff565b93506080880135915080821115612140578283fd5b5061214d88828901612064565b9150509295509295909350565b600080600080600060a08688031215612171578081fd5b61217a86611f6f565b945061218860208701611f6f565b9350604086013592506060860135915060808601356001600160401b038111156121b0578182fd5b61214d88828901612064565b600080600080600060a086880312156121d3578081fd5b6121dc86611f6f565b945060208601356001600160401b03808211156121f7578283fd5b61220389838a01611f86565b955060408801359450606088013593506080880135915080821115612140578283fd5b60008060006060848603121561223a578283fd5b61224384611f6f565b925060208401356001600160401b038082111561225e578384fd5b61226a87838801611fff565b9350604086013591508082111561227f578283fd5b5061228c86828701611fff565b9150509250925092565b600080600080608085870312156122ab578081fd5b6122b485611f6f565b935060208501356001600160401b03808211156122cf578283fd5b6122db88838901611fff565b945060408701359150808211156122f0578283fd5b6122fc88838901611fff565b93506060870135915080821115612311578283fd5b5061231e87828801612064565b91505092959194509250565b6000806040838503121561233c578182fd5b61234583611f6f565b915060208301358015158114612359578182fd5b809150509250929050565b60008060408385031215612376578182fd5b61237f83611f6f565b946020939093013593505050565b6000806000606084860312156123a1578081fd5b6123aa84611f6f565b95602085013595506040909401359392505050565b600080600080608085870312156123d4578182fd5b6123dd85611f6f565b9350602085013592506040850135915060608501356001600160401b03811115612405578182fd5b61231e87828801612064565b60008060408385031215612423578182fd5b82356001600160401b0380821115612439578384fd5b61244586838701611f86565b9350602085013591508082111561245a578283fd5b5061246785828601611fff565b9150509250929050565b600060208284031215612482578081fd5b5035919050565b6000806040838503121561249b578182fd5b823591506120ac60208401611f6f565b600080604083850312156124bd578182fd5b50508035926020909101359150565b6000602082840312156124dd578081fd5b8135610b8d81612fac565b6000602082840312156124f9578081fd5b8151610b8d81612fac565b60008060408385031215612516578182fd5b8235915060208301356001600160401b03811115612532578182fd5b8301601f81018513612542578182fd5b61246785823560208401611f12565b6000815180845260208085019450808401835b8381101561258057815187529582019590820190600101612564565b509495945050505050565b600081518084526125a3816020860160208601612e13565b601f01601f19169290920160200192915050565b60007f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000825283516125ef816017850160208801612e13565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351612620816028840160208801612e13565b01602801949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0386811682528516602082015260a06040820181905260009061266c90830186612551565b828103606084015261267e8186612551565b90508281036080840152612692818561258b565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906126d89083018461258b565b979650505050505050565b600060208252610b8d6020830184612551565b6000604082526127096040830185612551565b828103602084015261271b8185612551565b95945050505050565b901515815260200190565b90815260200190565b600060208252610b8d602083018461258b565b60208082526034908201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356040820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606082015260800190565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252818101527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604082015260600190565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252602b908201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b6020808252603f90820152600080516020612fc683398151915260408201527f68617665206d696e74657220726f6c6520746f20736574546f6b656e55524900606082015260800190565b6020808252602c908201527f455243313135355061757361626c653a20746f6b656e207472616e736665722060408201526b1dda1a5b19481c185d5cd95960a21b606082015260800190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526032908201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252603890820152600080516020612fc683398151915260408201527f68617665206d696e74657220726f6c6520746f206d696e740000000000000000606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252603b90820152600080516020612fc683398151915260408201527f686176652070617573657220726f6c6520746f20756e70617573650000000000606082015260800190565b6020808252603990820152600080516020612fc683398151915260408201527f686176652070617573657220726f6c6520746f20706175736500000000000000606082015260800190565b60208082526029908201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604082015268103337b91039b2b63360b91b606082015260800190565b60208082526029908201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604082015268040dad2e6dac2e8c6d60bb1b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b918252602082015260400190565b60006001600160401b03821115612dbb57612dbb612eee565b5060209081020190565b60008219821115612dd857612dd8612ed8565b500190565b6000816000190483118215151615612df757612df7612ed8565b500290565b600082821015612e0e57612e0e612ed8565b500390565b60005b83811015612e2e578181015183820152602001612e16565b838111156105e25750506000910152565b600081612e4e57612e4e612ed8565b506000190190565b600281046001821680612e6a57607f821691505b60208210811415612e8b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f191681016001600160401b0381118282101715612eb657612eb6612eee565b6040525050565b6000600019821415612ed157612ed1612ed8565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115610a7c57600481823e5160e01c90565b600060443d1015612f2b57610a7c565b6040516003193d81016004833e81513d6001600160401b038160248401118184111715612f5c575050505050610a7c565b8285019150815181811115612f7657505050505050610a7c565b843d8701016020828501011115612f9257505050505050610a7c565b612fa160208286010187612e91565b509094505050505090565b6001600160e01b031981168114612fc257600080fd5b5056fe455243313135355072657365744d696e7465725061757365723a206d757374209f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6a2646970667358221220ce678e064ffdade2ee3fa31645f2c9c59dfec623b1ead43b8cfcbeeabf44267b64736f6c63430008010033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _uri (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

60404:3918:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20061:231;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63771:187;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;60641:18::-;;;:::i;:::-;;;;;;;:::i;61935:109::-;;;;;;:::i;:::-;;:::i;62627:282::-;;;;;;:::i;:::-;;:::i;:::-;;43689:123;;;;;;:::i;:::-;;:::i;22764:1239::-;;;;;;:::i;:::-;;:::i;58778:165::-;;;;;;:::i;:::-;;:::i;59301:174::-;;;;;;:::i;:::-;;:::i;63519:180::-;;;:::i;20458:549::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;61690:237::-;;;;;;:::i;:::-;;:::i;33906:86::-;;;:::i;32491:319::-;;;;;;:::i;:::-;;:::i;62270:250::-;;;;;;:::i;:::-;;:::i;63125:174::-;;;:::i;61494:75::-;;;:::i;:::-;;;;;;;:::i;58233:145::-;;;;;;:::i;:::-;;:::i;42687:139::-;;;;;;:::i;:::-;;:::i;60666:20::-;;;:::i;40652:49::-;;;:::i;21080:311::-;;;;;;:::i;:::-;;:::i;58552:134::-;;;;;;:::i;:::-;;:::i;60497:62::-;;;:::i;59036:170::-;;;;;;:::i;:::-;;:::i;19075:345::-;;;;;;:::i;:::-;;:::i;60566:62::-;;;:::i;21463:168::-;;;;;;:::i;:::-;;:::i;21703:984::-;;;;;;:::i;:::-;;:::i;32196:287::-;;;;;;:::i;:::-;;:::i;20061:231::-;20147:7;-1:-1:-1;;;;;20175:21:0;;20167:77;;;;-1:-1:-1;;;20167:77:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;20262:13:0;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;20262:22:0;;;;;;;;;;20061:231;;;;;:::o;63771:187::-;63890:4;63914:36;63938:11;63914:23;:36::i;:::-;63907:43;;63771:187;;;;:::o;60641:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;61935:109::-;62022:12;;;;:8;:12;;;;;62015:19;;61989:13;;62022:12;62015:19;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61935:109;;;:::o;62627:282::-;62759:34;-1:-1:-1;;;;;;;;;;;62780:12:0;:10;:12::i;62759:34::-;62751:103;;;;-1:-1:-1;;;62751:103:0;;;;;;;:::i;:::-;62867:34;62878:2;62882:3;62887:7;62896:4;62867:10;:34::i;:::-;62627:282;;;;:::o;43689:123::-;43755:7;43782:12;;;;;;;;;;:22;;;;43689:123::o;22764:1239::-;23029:7;:14;23015:3;:10;:28;23007:81;;;;-1:-1:-1;;;23007:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23107:16:0;;23099:66;;;;-1:-1:-1;;;23099:66:0;;;;;;;:::i;:::-;23206:12;:10;:12::i;:::-;-1:-1:-1;;;;;23198:20:0;:4;-1:-1:-1;;;;;23198:20:0;;:60;;;;23222:36;23239:4;23245:12;:10;:12::i;23222:36::-;23176:160;;;;-1:-1:-1;;;23176:160:0;;;;;;;:::i;:::-;23349:16;23368:12;:10;:12::i;:::-;23349:31;;23393:60;23414:8;23424:4;23430:2;23434:3;23439:7;23448:4;23393:20;:60::i;:::-;23471:9;23466:377;23490:3;:10;23486:1;:14;23466:377;;;23522:10;23535:3;23539:1;23535:6;;;;;;-1:-1:-1;;;23535:6:0;;;;;;;;;;;;;;;23522:19;;23556:14;23573:7;23581:1;23573:10;;;;;;-1:-1:-1;;;23573:10:0;;;;;;;;;;;;;;;;;;;;23600:19;23622:13;;;:9;:13;;;;;;-1:-1:-1;;;;;23622:19:0;;;;;;;;;;;;23573:10;;-1:-1:-1;23664:21:0;;;;23656:76;;;;-1:-1:-1;;;23656:76:0;;;;;;;:::i;:::-;23769:20;23783:6;23769:11;:20;:::i;:::-;23747:9;:13;23757:2;23747:13;;;;;;;;;;;:19;23761:4;-1:-1:-1;;;;;23747:19:0;-1:-1:-1;;;;;23747:19:0;;;;;;;;;;;;:42;;;;23825:6;23804:9;:13;23814:2;23804:13;;;;;;;;;;;:17;23818:2;-1:-1:-1;;;;;23804:17:0;-1:-1:-1;;;;;23804:17:0;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;23466:377;;;23502:3;;;;:::i;:::-;;;23466:377;;;;23890:2;-1:-1:-1;;;;;23860:47:0;23884:4;-1:-1:-1;;;;;23860:47:0;23874:8;-1:-1:-1;;;;;23860:47:0;;23894:3;23899:7;23860:47;;;;;;;:::i;:::-;;;;;;;;23920:75;23956:8;23966:4;23972:2;23976:3;23981:7;23990:4;23920:35;:75::i;:::-;22764:1239;;;;;;:::o;58778:165::-;58863:30;58879:4;58885:7;58863:15;:30::i;:::-;58904:18;;;;:12;:18;;;;;:31;;58927:7;58904:22;:31::i;:::-;;58778:165;;:::o;59301:174::-;59389:33;59408:4;59414:7;59389:18;:33::i;:::-;59433:18;;;;:12;:18;;;;;:34;;59459:7;59433:25;:34::i;63519:180::-;63572:34;60604:24;63593:12;:10;:12::i;63572:34::-;63564:106;;;;-1:-1:-1;;;63564:106:0;;;;;;;:::i;:::-;63681:10;:8;:10::i;:::-;63519:180::o;20458:549::-;20639:16;20700:3;:10;20681:8;:15;:29;20673:83;;;;-1:-1:-1;;;20673:83:0;;;;;;;:::i;:::-;20769:30;20816:8;:15;-1:-1:-1;;;;;20802:30:0;;;;;-1:-1:-1;;;20802:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20802:30:0;;20769:63;;20850:9;20845:122;20869:8;:15;20865:1;:19;20845:122;;;20925:30;20935:8;20944:1;20935:11;;;;;;-1:-1:-1;;;20935:11:0;;;;;;;;;;;;;;;20948:3;20952:1;20948:6;;;;;;-1:-1:-1;;;20948:6:0;;;;;;;;;;;;;;;20925:9;:30::i;:::-;20906:13;20920:1;20906:16;;;;;;-1:-1:-1;;;20906:16:0;;;;;;;;;;;;;;;;;;:49;20886:3;;;:::i;:::-;;;20845:122;;;-1:-1:-1;20986:13:0;20458:549;-1:-1:-1;;;20458:549:0:o;61690:237::-;61782:34;-1:-1:-1;;;;;;;;;;;61803:12:0;:10;:12::i;61782:34::-;61774:110;;;;-1:-1:-1;;;61774:110:0;;;;;;;:::i;:::-;61895:12;;;;:8;:12;;;;;;;;:24;;;;;;;;:::i;33906:86::-;33977:7;;;;33906:86;;:::o;32491:319::-;32633:12;:10;:12::i;:::-;-1:-1:-1;;;;;32622:23:0;:7;-1:-1:-1;;;;;32622:23:0;;:66;;;;32649:39;32666:7;32675:12;:10;:12::i;32649:39::-;32600:157;;;;-1:-1:-1;;;32600:157:0;;;;;;;:::i;:::-;32770:32;32781:7;32790:3;32795:6;32770:10;:32::i;62270:250::-;62377:34;-1:-1:-1;;;;;;;;;;;62398:12:0;:10;:12::i;62377:34::-;62369:103;;;;-1:-1:-1;;;62369:103:0;;;;;;;:::i;:::-;62485:27;62491:2;62495;62499:6;62507:4;62485:5;:27::i;63125:174::-;63176:34;60604:24;63197:12;:10;:12::i;63176:34::-;63168:104;;;;-1:-1:-1;;;63168:104:0;;;;;;;:::i;:::-;63283:8;:6;:8::i;61494:75::-;61555:6;;-1:-1:-1;;;;;61555:6:0;61494:75;:::o;58233:145::-;58315:7;58342:18;;;:12;:18;;;;;:28;;58364:5;58342:21;:28::i;:::-;58335:35;58233:145;-1:-1:-1;;;58233:145:0:o;42687:139::-;42765:4;42789:12;;;;;;;;;;;-1:-1:-1;;;;;42789:29:0;;;;;;;;;;;;;;;42687:139::o;60666:20::-;;;;;;;:::i;40652:49::-;40697:4;40652:49;:::o;21080:311::-;21199:8;-1:-1:-1;;;;;21183:24:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;21183:24:0;;;21175:78;;;;-1:-1:-1;;;21175:78:0;;;;;;;:::i;:::-;21311:8;21266:18;:32;21285:12;:10;:12::i;:::-;-1:-1:-1;;;;;21266:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;21266:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;21266:53:0;;;;;;;;;;;21350:12;:10;:12::i;:::-;-1:-1:-1;;;;;21335:48:0;;21374:8;21335:48;;;;;;:::i;:::-;;;;;;;;21080:311;;:::o;58552:134::-;58624:7;58651:18;;;:12;:18;;;;;:27;;:25;:27::i;60497:62::-;-1:-1:-1;;;;;;;;;;;60497:62:0;:::o;59036:170::-;59122:31;59139:4;59145:7;59122:16;:31::i;19075:345::-;19312:6;19308:105;19327:2;:9;19324:1;:12;19308:105;;;19353:47;19370:4;19376:2;19379:1;19376:5;;;;;;-1:-1:-1;;;19376:5:0;;;;;;;;;;;;;;;19383:2;19387:6;19395:4;19353:16;:47::i;:::-;19338:3;;;;:::i;:::-;;;;19308:105;;60566:62;60604:24;60566:62;:::o;21463:168::-;-1:-1:-1;;;;;21586:27:0;;;21562:4;21586:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;21463:168::o;21703:984::-;-1:-1:-1;;;;;21929:16:0;;21921:66;;;;-1:-1:-1;;;21921:66:0;;;;;;;:::i;:::-;22028:12;:10;:12::i;:::-;-1:-1:-1;;;;;22020:20:0;:4;-1:-1:-1;;;;;22020:20:0;;:60;;;;22044:36;22061:4;22067:12;:10;:12::i;22044:36::-;21998:151;;;;-1:-1:-1;;;21998:151:0;;;;;;;:::i;:::-;22162:16;22181:12;:10;:12::i;:::-;22162:31;;22206:96;22227:8;22237:4;22243:2;22247:21;22265:2;22247:17;:21::i;:::-;22270:25;22288:6;22270:17;:25::i;:::-;22297:4;22206:20;:96::i;:::-;22315:19;22337:13;;;:9;:13;;;;;;;;-1:-1:-1;;;;;22337:19:0;;;;;;;;;;22375:21;;;;22367:76;;;;-1:-1:-1;;;22367:76:0;;;;;;;:::i;:::-;22476:20;22490:6;22476:11;:20;:::i;:::-;22454:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;22454:19:0;;;;;;;;;;:42;;;;22507:17;;;;;;;:27;;22528:6;;22454:13;22507:27;;22528:6;;22507:27;:::i;:::-;;;;;;;;22583:2;-1:-1:-1;;;;;22552:46:0;22577:4;-1:-1:-1;;;;;22552:46:0;22567:8;-1:-1:-1;;;;;22552:46:0;;22587:2;22591:6;22552:46;;;;;;;:::i;:::-;;;;;;;;22611:68;22642:8;22652:4;22658:2;22662;22666:6;22674:4;22611:30;:68::i;:::-;21703:984;;;;;;;:::o;32196:287::-;32313:12;:10;:12::i;:::-;-1:-1:-1;;;;;32302:23:0;:7;-1:-1:-1;;;;;32302:23:0;;:66;;;;32329:39;32346:7;32355:12;:10;:12::i;32329:39::-;32280:157;;;;-1:-1:-1;;;32280:157:0;;;;;;;:::i;:::-;32450:25;32456:7;32465:2;32469:5;32450;:25::i;45923:112::-;46002:25;46013:4;46019:7;46002:10;:25::i;:::-;45923:112;;:::o;53527:152::-;53597:4;53621:50;53626:3;-1:-1:-1;;;;;53646:23:0;;53621:4;:50::i;19496:297::-;19598:4;-1:-1:-1;;;;;;19622:41:0;;-1:-1:-1;;;19622:41:0;;:110;;-1:-1:-1;;;;;;;19680:52:0;;-1:-1:-1;;;19680:52:0;19622:110;:163;;;;19749:36;19773:11;19749:23;:36::i;16721:98::-;16801:10;16721:98;:::o;26248:689::-;-1:-1:-1;;;;;26383:16:0;;26375:62;;;;-1:-1:-1;;;26375:62:0;;;;;;;:::i;:::-;26470:7;:14;26456:3;:10;:28;26448:81;;;;-1:-1:-1;;;26448:81:0;;;;;;;:::i;:::-;26542:16;26561:12;:10;:12::i;:::-;26542:31;;26586:66;26607:8;26625:1;26629:2;26633:3;26638:7;26647:4;26586:20;:66::i;:::-;26670:6;26665:100;26686:3;:10;26682:1;:14;26665:100;;;26743:7;26751:1;26743:10;;;;;;-1:-1:-1;;;26743:10:0;;;;;;;;;;;;;;;26718:9;:17;26728:3;26732:1;26728:6;;;;;;-1:-1:-1;;;26728:6:0;;;;;;;;;;;;;;;26718:17;;;;;;;;;;;:21;26736:2;-1:-1:-1;;;;;26718:21:0;-1:-1:-1;;;;;26718:21:0;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;-1:-1:-1;26698:3:0;;-1:-1:-1;26698:3:0;;;:::i;:::-;;;;26665:100;;;;26818:2;-1:-1:-1;;;;;26782:53:0;26814:1;-1:-1:-1;;;;;26782:53:0;26796:8;-1:-1:-1;;;;;26782:53:0;;26822:3;26827:7;26782:53;;;;;;;:::i;:::-;;;;;;;;26848:81;26884:8;26902:1;26906:2;26910:3;26915:7;26924:4;26848:35;:81::i;:::-;26248:689;;;;;:::o;63966:353::-;64245:66;64272:8;64282:4;64288:2;64292:3;64297:7;64306:4;64245:26;:66::i;30820:799::-;31074:15;:2;-1:-1:-1;;;;;31074:13:0;;:15::i;:::-;31070:542;;;31110:79;;-1:-1:-1;;;31110:79:0;;-1:-1:-1;;;;;31110:43:0;;;;;:79;;31154:8;;31164:4;;31170:3;;31175:7;;31184:4;;31110:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31110:79:0;;;;;;;;-1:-1:-1;;31110:79:0;;;;;;;;;;;;:::i;:::-;;;31106:495;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;31474:6;31467:14;;-1:-1:-1;;;31467:14:0;;;;;;;;:::i;31106:495::-;;;31523:62;;-1:-1:-1;;;31523:62:0;;;;;;;:::i;31106:495::-;-1:-1:-1;;;;;;31239:64:0;;-1:-1:-1;;;31239:64:0;31235:163;;31328:50;;-1:-1:-1;;;31328:50:0;;;;;;;:::i;44074:147::-;44157:18;44170:4;44157:12;:18::i;:::-;42256:30;42267:4;42273:12;:10;:12::i;:::-;42256:10;:30::i;:::-;44188:25:::1;44199:4;44205:7;44188:10;:25::i;45122:218::-:0;45229:12;:10;:12::i;:::-;-1:-1:-1;;;;;45218:23:0;:7;-1:-1:-1;;;;;45218:23:0;;45210:83;;;;-1:-1:-1;;;45210:83:0;;;;;;;:::i;:::-;45306:26;45318:4;45324:7;45306:11;:26::i;53855:158::-;53928:4;53952:53;53960:3;-1:-1:-1;;;;;53980:23:0;;53952:7;:53::i;34965:120::-;34509:8;:6;:8::i;:::-;34501:41;;;;-1:-1:-1;;;34501:41:0;;;;;;;:::i;:::-;35024:7:::1;:15:::0;;-1:-1:-1;;35024:15:0::1;::::0;;35055:22:::1;35064:12;:10;:12::i;:::-;35055:22;;;;;;:::i;:::-;;;;;;;;34965:120::o:0;28004:837::-;-1:-1:-1;;;;;28125:21:0;;28117:69;;;;-1:-1:-1;;;28117:69:0;;;;;;;:::i;:::-;28219:7;:14;28205:3;:10;:28;28197:81;;;;-1:-1:-1;;;28197:81:0;;;;;;;:::i;:::-;28291:16;28310:12;:10;:12::i;:::-;28291:31;;28335:69;28356:8;28366:7;28383:1;28387:3;28392:7;28335:69;;;;;;;;;;;;:20;:69::i;:::-;28422:6;28417:341;28438:3;:10;28434:1;:14;28417:341;;;28470:10;28483:3;28487:1;28483:6;;;;;;-1:-1:-1;;;28483:6:0;;;;;;;;;;;;;;;28470:19;;28504:14;28521:7;28529:1;28521:10;;;;;;-1:-1:-1;;;28521:10:0;;;;;;;;;;;;;;;;;;;;28548:22;28573:13;;;:9;:13;;;;;;-1:-1:-1;;;;;28573:22:0;;;;;;;;;;;;28521:10;;-1:-1:-1;28618:24:0;;;;28610:73;;;;-1:-1:-1;;;28610:73:0;;;;;;;:::i;:::-;28723:23;28740:6;28723:14;:23;:::i;:::-;28698:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;28698:22:0;;;;;;;;;;:48;;;;-1:-1:-1;28450:3:0;;-1:-1:-1;28450:3:0;;;:::i;:::-;;;;28417:341;;;;28816:1;-1:-1:-1;;;;;28775:58:0;28799:7;-1:-1:-1;;;;;28775:58:0;28789:8;-1:-1:-1;;;;;28775:58:0;;28820:3;28825:7;28775:58;;;;;;;:::i;:::-;;;;;;;;28004:837;;;;:::o;25336:556::-;-1:-1:-1;;;;;25451:21:0;;25443:67;;;;-1:-1:-1;;;25443:67:0;;;;;;;:::i;:::-;25523:16;25542:12;:10;:12::i;:::-;25523:31;;25567:107;25588:8;25606:1;25610:7;25619:21;25637:2;25619:17;:21::i;25567:107::-;25687:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;25687:22:0;;;;;;;;;:32;;25713:6;;25687:13;:32;;25713:6;;25687:32;:::i;:::-;;;;;;;;25772:7;-1:-1:-1;;;;;25735:57:0;25768:1;-1:-1:-1;;;;;25735:57:0;25750:8;-1:-1:-1;;;;;25735:57:0;;25781:2;25785:6;25735:57;;;;;;;:::i;:::-;;;;;;;;25805:79;25836:8;25854:1;25858:7;25867:2;25871:6;25879:4;25805:30;:79::i;34706:118::-;34232:8;:6;:8::i;:::-;34231:9;34223:38;;;;-1:-1:-1;;;34223:38:0;;;;;;;:::i;:::-;34766:7:::1;:14:::0;;-1:-1:-1;;34766:14:0::1;34776:4;34766:14;::::0;;34796:20:::1;34803:12;:10;:12::i;54813:158::-:0;54887:7;54938:22;54942:3;54954:5;54938:3;:22::i;54352:117::-;54415:7;54442:19;54450:3;54442:7;:19::i;44466:149::-;44550:18;44563:4;44550:12;:18::i;:::-;42256:30;42267:4;42273:12;:10;:12::i;42256:30::-;44581:26:::1;44593:4;44599:7;44581:11;:26::i;31627:198::-:0;31747:16;;;31761:1;31747:16;;;;;;;;;31693;;31722:22;;31747:16;;;;;;;;;;;;-1:-1:-1;31747:16:0;31722:41;;31785:7;31774:5;31780:1;31774:8;;;;;;-1:-1:-1;;;31774:8:0;;;;;;;;;;;;;;;;;;:18;31812:5;31627:198;-1:-1:-1;;31627:198:0:o;30050:762::-;30279:15;:2;-1:-1:-1;;;;;30279:13:0;;:15::i;:::-;30275:530;;;30315:72;;-1:-1:-1;;;30315:72:0;;-1:-1:-1;;;;;30315:38:0;;;;;:72;;30354:8;;30364:4;;30370:2;;30374:6;;30382:4;;30315:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30315:72:0;;;;;;;;-1:-1:-1;;30315:72:0;;;;;;;;;;;;:::i;:::-;;;30311:483;;;;:::i;:::-;-1:-1:-1;;;;;;30437:59:0;;-1:-1:-1;;;30437:59:0;30433:158;;30521:50;;-1:-1:-1;;;30521:50:0;;;;;;;:::i;27196:605::-;-1:-1:-1;;;;;27292:21:0;;27284:69;;;;-1:-1:-1;;;27284:69:0;;;;;;;:::i;:::-;27366:16;27385:12;:10;:12::i;:::-;27366:31;;27410:105;27431:8;27441:7;27458:1;27462:21;27480:2;27462:17;:21::i;:::-;27485:25;27503:6;27485:17;:25::i;:::-;27410:105;;;;;;;;;;;;:20;:105::i;:::-;27528:22;27553:13;;;:9;:13;;;;;;;;-1:-1:-1;;;;;27553:22:0;;;;;;;;;;27594:24;;;;27586:73;;;;-1:-1:-1;;;27586:73:0;;;;;;;:::i;:::-;27695:23;27712:6;27695:14;:23;:::i;:::-;27670:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;27670:22:0;;;;;;;;;;;;;:48;;;;27736:57;27670:13;;:22;27736:57;;;;;;;;27680:2;;27786:6;;27736:57;:::i;:::-;;;;;;;;27196:605;;;;;:::o;46370:229::-;46445:22;46453:4;46459:7;46445;:22::i;:::-;46440:152;;46484:6;:12;;;;;;;;;;;-1:-1:-1;;;;;46484:29:0;;;;;;;;;:36;;-1:-1:-1;;46484:36:0;46516:4;46484:36;;;46567:12;:10;:12::i;:::-;-1:-1:-1;;;;;46540:40:0;46558:7;-1:-1:-1;;;;;46540:40:0;46552:4;46540:40;;;;;;;;;;46370:229;;:::o;48582:414::-;48645:4;48667:21;48677:3;48682:5;48667:9;:21::i;:::-;48662:327;;-1:-1:-1;48705:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;48888:18;;48866:19;;;:12;;;:19;;;;;;:40;;;;48921:11;;48662:327;-1:-1:-1;48972:5:0;48965:12;;57407:227;57492:4;-1:-1:-1;;;;;;57516:57:0;;-1:-1:-1;;;57516:57:0;;:110;;;57590:36;57614:11;57590:23;:36::i;35743:424::-;36014:66;36041:8;36051:4;36057:2;36061:3;36066:7;36075:4;36014:26;:66::i;:::-;36102:8;:6;:8::i;:::-;36101:9;36093:66;;;;-1:-1:-1;;;36093:66:0;;;;;;;:::i;8822:422::-;9189:20;9228:8;;;8822:422::o;43116:384::-;43196:22;43204:4;43210:7;43196;:22::i;:::-;43192:301;;43328:41;43356:7;-1:-1:-1;;;;;43328:41:0;43366:2;43328:19;:41::i;:::-;43426:38;43454:4;43461:2;43426:19;:38::i;:::-;43249:230;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;43249:230:0;;;;;;;;;;-1:-1:-1;;;43235:246:0;;;;;;;:::i;46607:230::-;46682:22;46690:4;46696:7;46682;:22::i;:::-;46678:152;;;46753:5;46721:12;;;;;;;;;;;-1:-1:-1;;;;;46721:29:0;;;;;;;;;:37;;-1:-1:-1;;46721:37:0;;;46805:12;:10;:12::i;:::-;-1:-1:-1;;;;;46778:40:0;46796:7;-1:-1:-1;;;;;46778:40:0;46790:4;46778:40;;;;;;;;;;46607:230;;:::o;49172:1553::-;49238:4;49377:19;;;:12;;;:19;;;;;;49413:15;;49409:1309;;49775:21;49799:14;49812:1;49799:10;:14;:::i;:::-;49848:18;;49775:38;;-1:-1:-1;49828:17:0;;49848:22;;49869:1;;49848:22;:::i;:::-;49828:42;;50115:17;50135:3;:11;;50147:9;50135:22;;;;;;-1:-1:-1;;;50135:22:0;;;;;;;;;;;;;;;;;50115:42;;50281:9;50252:3;:11;;50264:13;50252:26;;;;;;-1:-1:-1;;;50252:26:0;;;;;;;;;;;;;;;;;;;;:38;;;;50358:23;;;:12;;;:23;;;;;;:36;;;50519:17;;50358:3;;50519:17;;;-1:-1:-1;;;50519:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;50614:3;:12;;:19;50627:5;50614:19;;;;;;;;;;;50607:26;;;50657:4;50650:11;;;;;;;;49409:1309;50701:5;50694:12;;;;;51479:204;51574:18;;51546:7;;51574:26;-1:-1:-1;51566:73:0;;;;-1:-1:-1;;;51566:73:0;;;;;;;:::i;:::-;51657:3;:11;;51669:5;51657:18;;;;;;-1:-1:-1;;;51657:18:0;;;;;;;;;;;;;;;;;51650:25;;51479:204;;;;:::o;51026:109::-;51109:18;;51026:109::o;50811:129::-;50884:4;50908:19;;;:12;;;;;:19;;;;;;:24;;;50811:129::o;42378:217::-;42463:4;-1:-1:-1;;;;;;42487:47:0;;-1:-1:-1;;;42487:47:0;;:100;;;42551:36;42575:11;42551:23;:36::i;37798:447::-;37873:13;37899:19;37931:10;37935:6;37931:1;:10;:::i;:::-;:14;;37944:1;37931:14;:::i;:::-;-1:-1:-1;;;;;37921:25:0;;;;;-1:-1:-1;;;37921:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37921:25:0;;37899:47;;-1:-1:-1;;;37957:6:0;37964:1;37957:9;;;;;;-1:-1:-1;;;37957:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;37957:15:0;;;;;;;;;-1:-1:-1;;;37983:6:0;37990:1;37983:9;;;;;;-1:-1:-1;;;37983:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;37983:15:0;;;;;;;;-1:-1:-1;38014:9:0;38026:10;38030:6;38026:1;:10;:::i;:::-;:14;;38039:1;38026:14;:::i;:::-;38014:26;;38009:131;38046:1;38042;:5;38009:131;;;-1:-1:-1;;;38090:5:0;38098:3;38090:11;38081:21;;;;;-1:-1:-1;;;38081:21:0;;;;;;;;;;;;38069:6;38076:1;38069:9;;;;;;-1:-1:-1;;;38069:9:0;;;;;;;;;;;;:33;-1:-1:-1;;;;;38069:33:0;;;;;;;;-1:-1:-1;38127:1:0;38117:11;;;;;38049:3;;;:::i;:::-;;;38009:131;;;-1:-1:-1;38158:10:0;;38150:55;;;;-1:-1:-1;;;38150:55:0;;;;;;;:::i;17881:157::-;-1:-1:-1;;;;;;17990:40:0;;-1:-1:-1;;;17990:40:0;17881:157;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:470:1;;-1:-1:-1;;;;;106:6:1;103:30;100:2;;;136:18;;:::i;:::-;185:2;179:9;197:69;254:2;233:15;;-1:-1:-1;;229:29:1;260:4;225:40;179:9;197:69;:::i;:::-;284:6;275:15;;314:6;306;299:22;354:3;345:6;340:3;336:16;333:25;330:2;;;371:1;368;361:12;330:2;421:6;416:3;409:4;401:6;397:17;384:44;476:1;469:4;460:6;452;448:19;444:30;437:41;;90:394;;;;;:::o;489:175::-;559:20;;-1:-1:-1;;;;;608:31:1;;598:42;;588:2;;654:1;651;644:12;669:776;;782:3;775:4;767:6;763:17;759:27;749:2;;804:5;797;790:20;749:2;844:6;831:20;870:4;893:49;939:2;893:49;:::i;:::-;971:2;965:9;983:31;1011:2;1003:6;983:31;:::i;:::-;1049:18;;;1083:15;;;;-1:-1:-1;1118:15:1;;;1164:11;;;1152:24;;1148:33;;1145:42;-1:-1:-1;1142:2:1;;;1204:5;1197;1190:20;1142:2;1230:5;1244:171;1258:2;1255:1;1252:9;1244:171;;;1315:25;1336:3;1315:25;:::i;:::-;1303:38;;1361:12;;;;1393;;;;1276:1;1269:9;1244:171;;;-1:-1:-1;1433:6:1;;739:706;-1:-1:-1;;;;;;;739:706:1:o;1450:768::-;;1563:3;1556:4;1548:6;1544:17;1540:27;1530:2;;1585:5;1578;1571:20;1530:2;1625:6;1612:20;1651:4;1674:49;1720:2;1674:49;:::i;:::-;1752:2;1746:9;1764:31;1792:2;1784:6;1764:31;:::i;:::-;1830:18;;;1864:15;;;;-1:-1:-1;1899:15:1;;;1945:11;;;1933:24;;1929:33;;1926:42;-1:-1:-1;1923:2:1;;;1985:5;1978;1971:20;1923:2;2011:5;2025:163;2039:2;2036:1;2033:9;2025:163;;;2096:17;;2084:30;;2134:12;;;;2166;;;;2057:1;2050:9;2025:163;;2223:232;;2320:3;2313:4;2305:6;2301:17;2297:27;2287:2;;2342:5;2335;2328:20;2287:2;2368:81;2445:3;2436:6;2423:20;2416:4;2408:6;2404:17;2368:81;:::i;2460:274::-;;;2589:2;2577:9;2568:7;2564:23;2560:32;2557:2;;;2610:6;2602;2595:22;2557:2;2638:31;2659:9;2638:31;:::i;:::-;2628:41;;2688:40;2724:2;2713:9;2709:18;2688:40;:::i;:::-;2678:50;;2547:187;;;;;:::o;2739:1001::-;;;;;;2978:3;2966:9;2957:7;2953:23;2949:33;2946:2;;;3000:6;2992;2985:22;2946:2;3028:31;3049:9;3028:31;:::i;:::-;3018:41;;3078:40;3114:2;3103:9;3099:18;3078:40;:::i;:::-;3068:50;;3169:2;3158:9;3154:18;3141:32;-1:-1:-1;;;;;3233:2:1;3225:6;3222:14;3219:2;;;3254:6;3246;3239:22;3219:2;3282:67;3341:7;3332:6;3321:9;3317:22;3282:67;:::i;:::-;3272:77;;3402:2;3391:9;3387:18;3374:32;3358:48;;3431:2;3421:8;3418:16;3415:2;;;3452:6;3444;3437:22;3415:2;3480:69;3541:7;3530:8;3519:9;3515:24;3480:69;:::i;:::-;3470:79;;3602:3;3591:9;3587:19;3574:33;3558:49;;3632:2;3622:8;3619:16;3616:2;;;3653:6;3645;3638:22;3616:2;;3681:53;3726:7;3715:8;3704:9;3700:24;3681:53;:::i;:::-;3671:63;;;2936:804;;;;;;;;:::o;3745:632::-;;;;;;3934:3;3922:9;3913:7;3909:23;3905:33;3902:2;;;3956:6;3948;3941:22;3902:2;3984:31;4005:9;3984:31;:::i;:::-;3974:41;;4034:40;4070:2;4059:9;4055:18;4034:40;:::i;:::-;4024:50;;4121:2;4110:9;4106:18;4093:32;4083:42;;4172:2;4161:9;4157:18;4144:32;4134:42;;4227:3;4216:9;4212:19;4199:33;-1:-1:-1;;;;;4247:6:1;4244:30;4241:2;;;4292:6;4284;4277:22;4241:2;4320:51;4363:7;4354:6;4343:9;4339:22;4320:51;:::i;4382:819::-;;;;;;4596:3;4584:9;4575:7;4571:23;4567:33;4564:2;;;4618:6;4610;4603:22;4564:2;4646:31;4667:9;4646:31;:::i;:::-;4636:41;;4728:2;4717:9;4713:18;4700:32;-1:-1:-1;;;;;4792:2:1;4784:6;4781:14;4778:2;;;4813:6;4805;4798:22;4778:2;4841:67;4900:7;4891:6;4880:9;4876:22;4841:67;:::i;:::-;4831:77;;4955:2;4944:9;4940:18;4927:32;4917:42;;5006:2;4995:9;4991:18;4978:32;4968:42;;5063:3;5052:9;5048:19;5035:33;5019:49;;5093:2;5083:8;5080:16;5077:2;;;5114:6;5106;5099:22;5206:713;;;;5402:2;5390:9;5381:7;5377:23;5373:32;5370:2;;;5423:6;5415;5408:22;5370:2;5451:31;5472:9;5451:31;:::i;:::-;5441:41;;5533:2;5522:9;5518:18;5505:32;-1:-1:-1;;;;;5597:2:1;5589:6;5586:14;5583:2;;;5618:6;5610;5603:22;5583:2;5646:67;5705:7;5696:6;5685:9;5681:22;5646:67;:::i;:::-;5636:77;;5766:2;5755:9;5751:18;5738:32;5722:48;;5795:2;5785:8;5782:16;5779:2;;;5816:6;5808;5801:22;5779:2;;5844:69;5905:7;5894:8;5883:9;5879:24;5844:69;:::i;:::-;5834:79;;;5360:559;;;;;:::o;5924:924::-;;;;;6146:3;6134:9;6125:7;6121:23;6117:33;6114:2;;;6168:6;6160;6153:22;6114:2;6196:31;6217:9;6196:31;:::i;:::-;6186:41;;6278:2;6267:9;6263:18;6250:32;-1:-1:-1;;;;;6342:2:1;6334:6;6331:14;6328:2;;;6363:6;6355;6348:22;6328:2;6391:67;6450:7;6441:6;6430:9;6426:22;6391:67;:::i;:::-;6381:77;;6511:2;6500:9;6496:18;6483:32;6467:48;;6540:2;6530:8;6527:16;6524:2;;;6561:6;6553;6546:22;6524:2;6589:69;6650:7;6639:8;6628:9;6624:24;6589:69;:::i;:::-;6579:79;;6711:2;6700:9;6696:18;6683:32;6667:48;;6740:2;6730:8;6727:16;6724:2;;;6761:6;6753;6746:22;6724:2;;6789:53;6834:7;6823:8;6812:9;6808:24;6789:53;:::i;:::-;6779:63;;;6104:744;;;;;;;:::o;6853:369::-;;;6979:2;6967:9;6958:7;6954:23;6950:32;6947:2;;;7000:6;6992;6985:22;6947:2;7028:31;7049:9;7028:31;:::i;:::-;7018:41;;7109:2;7098:9;7094:18;7081:32;7156:5;7149:13;7142:21;7135:5;7132:32;7122:2;;7183:6;7175;7168:22;7122:2;7211:5;7201:15;;;6937:285;;;;;:::o;7227:266::-;;;7356:2;7344:9;7335:7;7331:23;7327:32;7324:2;;;7377:6;7369;7362:22;7324:2;7405:31;7426:9;7405:31;:::i;:::-;7395:41;7483:2;7468:18;;;;7455:32;;-1:-1:-1;;;7314:179:1:o;7498:334::-;;;;7644:2;7632:9;7623:7;7619:23;7615:32;7612:2;;;7665:6;7657;7650:22;7612:2;7693:31;7714:9;7693:31;:::i;:::-;7683:41;7771:2;7756:18;;7743:32;;-1:-1:-1;7822:2:1;7807:18;;;7794:32;;7602:230;-1:-1:-1;;;7602:230:1:o;7837:555::-;;;;;8009:3;7997:9;7988:7;7984:23;7980:33;7977:2;;;8031:6;8023;8016:22;7977:2;8059:31;8080:9;8059:31;:::i;:::-;8049:41;;8137:2;8126:9;8122:18;8109:32;8099:42;;8188:2;8177:9;8173:18;8160:32;8150:42;;8243:2;8232:9;8228:18;8215:32;-1:-1:-1;;;;;8262:6:1;8259:30;8256:2;;;8307:6;8299;8292:22;8256:2;8335:51;8378:7;8369:6;8358:9;8354:22;8335:51;:::i;8397:637::-;;;8576:2;8564:9;8555:7;8551:23;8547:32;8544:2;;;8597:6;8589;8582:22;8544:2;8642:9;8629:23;-1:-1:-1;;;;;8712:2:1;8704:6;8701:14;8698:2;;;8733:6;8725;8718:22;8698:2;8761:67;8820:7;8811:6;8800:9;8796:22;8761:67;:::i;:::-;8751:77;;8881:2;8870:9;8866:18;8853:32;8837:48;;8910:2;8900:8;8897:16;8894:2;;;8931:6;8923;8916:22;8894:2;;8959:69;9020:7;9009:8;8998:9;8994:24;8959:69;:::i;:::-;8949:79;;;8534:500;;;;;:::o;9039:190::-;;9151:2;9139:9;9130:7;9126:23;9122:32;9119:2;;;9172:6;9164;9157:22;9119:2;-1:-1:-1;9200:23:1;;9109:120;-1:-1:-1;9109:120:1:o;9234:266::-;;;9363:2;9351:9;9342:7;9338:23;9334:32;9331:2;;;9384:6;9376;9369:22;9331:2;9425:9;9412:23;9402:33;;9454:40;9490:2;9479:9;9475:18;9454:40;:::i;9505:258::-;;;9634:2;9622:9;9613:7;9609:23;9605:32;9602:2;;;9655:6;9647;9640:22;9602:2;-1:-1:-1;;9683:23:1;;;9753:2;9738:18;;;9725:32;;-1:-1:-1;9592:171:1:o;9768:257::-;;9879:2;9867:9;9858:7;9854:23;9850:32;9847:2;;;9900:6;9892;9885:22;9847:2;9944:9;9931:23;9963:32;9989:5;9963:32;:::i;10030:261::-;;10152:2;10140:9;10131:7;10127:23;10123:32;10120:2;;;10173:6;10165;10158:22;10120:2;10210:9;10204:16;10229:32;10255:5;10229:32;:::i;10491:550::-;;;10630:2;10618:9;10609:7;10605:23;10601:32;10598:2;;;10651:6;10643;10636:22;10598:2;10692:9;10679:23;10669:33;;10753:2;10742:9;10738:18;10725:32;-1:-1:-1;;;;;10772:6:1;10769:30;10766:2;;;10817:6;10809;10802:22;10766:2;10845:22;;10898:4;10890:13;;10886:27;-1:-1:-1;10876:2:1;;10932:6;10924;10917:22;10876:2;10960:75;11027:7;11022:2;11009:16;11004:2;11000;10996:11;10960:75;:::i;11046:443::-;;11143:5;11137:12;11170:6;11165:3;11158:19;11196:4;11225:2;11220:3;11216:12;11209:19;;11262:2;11255:5;11251:14;11283:3;11295:169;11309:6;11306:1;11303:13;11295:169;;;11370:13;;11358:26;;11404:12;;;;11439:15;;;;11331:1;11324:9;11295:169;;;-1:-1:-1;11480:3:1;;11113:376;-1:-1:-1;;;;;11113:376:1:o;11494:259::-;;11575:5;11569:12;11602:6;11597:3;11590:19;11618:63;11674:6;11667:4;11662:3;11658:14;11651:4;11644:5;11640:16;11618:63;:::i;:::-;11735:2;11714:15;-1:-1:-1;;11710:29:1;11701:39;;;;11742:4;11697:50;;11545:208;-1:-1:-1;;11545:208:1:o;11758:786::-;;12169:25;12164:3;12157:38;12224:6;12218:13;12240:62;12295:6;12290:2;12285:3;12281:12;12274:4;12266:6;12262:17;12240:62;:::i;:::-;-1:-1:-1;;;12361:2:1;12321:16;;;12353:11;;;12346:40;12411:13;;12433:63;12411:13;12482:2;12474:11;;12467:4;12455:17;;12433:63;:::i;:::-;12516:17;12535:2;12512:26;;12147:397;-1:-1:-1;;;;12147:397:1:o;12549:203::-;-1:-1:-1;;;;;12713:32:1;;;;12695:51;;12683:2;12668:18;;12650:102::o;12757:840::-;-1:-1:-1;;;;;13154:15:1;;;13136:34;;13206:15;;13201:2;13186:18;;13179:43;13116:3;13253:2;13238:18;;13231:31;;;12757:840;;13285:63;;13328:19;;13320:6;13285:63;:::i;:::-;13396:9;13388:6;13384:22;13379:2;13368:9;13364:18;13357:50;13430;13473:6;13465;13430:50;:::i;:::-;13416:64;;13529:9;13521:6;13517:22;13511:3;13500:9;13496:19;13489:51;13557:34;13584:6;13576;13557:34;:::i;:::-;13549:42;13088:509;-1:-1:-1;;;;;;;;13088:509:1:o;13602:562::-;-1:-1:-1;;;;;13899:15:1;;;13881:34;;13951:15;;13946:2;13931:18;;13924:43;13998:2;13983:18;;13976:34;;;14041:2;14026:18;;14019:34;;;13861:3;14084;14069:19;;14062:32;;;13602:562;;14111:47;;14138:19;;14130:6;14111:47;:::i;:::-;14103:55;13833:331;-1:-1:-1;;;;;;;13833:331:1:o;14169:267::-;;14348:2;14337:9;14330:21;14368:62;14426:2;14415:9;14411:18;14403:6;14368:62;:::i;14441:477::-;;14698:2;14687:9;14680:21;14724:62;14782:2;14771:9;14767:18;14759:6;14724:62;:::i;:::-;14834:9;14826:6;14822:22;14817:2;14806:9;14802:18;14795:50;14862;14905:6;14897;14862:50;:::i;:::-;14854:58;14670:248;-1:-1:-1;;;;;14670:248:1:o;14923:187::-;15088:14;;15081:22;15063:41;;15051:2;15036:18;;15018:92::o;15115:177::-;15261:25;;;15249:2;15234:18;;15216:76::o;15297:221::-;;15446:2;15435:9;15428:21;15466:46;15508:2;15497:9;15493:18;15485:6;15466:46;:::i;15523:416::-;15725:2;15707:21;;;15764:2;15744:18;;;15737:30;15803:34;15798:2;15783:18;;15776:62;-1:-1:-1;;;15869:2:1;15854:18;;15847:50;15929:3;15914:19;;15697:242::o;15944:398::-;16146:2;16128:21;;;16185:2;16165:18;;;16158:30;16224:34;16219:2;16204:18;;16197:62;-1:-1:-1;;;16290:2:1;16275:18;;16268:32;16332:3;16317:19;;16118:224::o;16347:356::-;16549:2;16531:21;;;16568:18;;;16561:30;16627:34;16622:2;16607:18;;16600:62;16694:2;16679:18;;16521:182::o;16708:404::-;16910:2;16892:21;;;16949:2;16929:18;;;16922:30;16988:34;16983:2;16968:18;;16961:62;-1:-1:-1;;;17054:2:1;17039:18;;17032:38;17102:3;17087:19;;16882:230::o;17117:344::-;17319:2;17301:21;;;17358:2;17338:18;;;17331:30;-1:-1:-1;;;17392:2:1;17377:18;;17370:50;17452:2;17437:18;;17291:170::o;17466:407::-;17668:2;17650:21;;;17707:2;17687:18;;;17680:30;17746:34;17741:2;17726:18;;17719:62;-1:-1:-1;;;17812:2:1;17797:18;;17790:41;17863:3;17848:19;;17640:233::o;17878:400::-;18080:2;18062:21;;;18119:2;18099:18;;;18092:30;18158:34;18153:2;18138:18;;18131:62;-1:-1:-1;;;18224:2:1;18209:18;;18202:34;18268:3;18253:19;;18052:226::o;18283:427::-;18485:2;18467:21;;;18524:2;18504:18;;;18497:30;-1:-1:-1;;;;;;;;;;;18558:2:1;18543:18;;18536:62;18634:33;18629:2;18614:18;;18607:61;18700:3;18685:19;;18457:253::o;18715:408::-;18917:2;18899:21;;;18956:2;18936:18;;;18929:30;18995:34;18990:2;18975:18;;18968:62;-1:-1:-1;;;19061:2:1;19046:18;;19039:42;19113:3;19098:19;;18889:234::o;19128:405::-;19330:2;19312:21;;;19369:2;19349:18;;;19342:30;19408:34;19403:2;19388:18;;19381:62;-1:-1:-1;;;19474:2:1;19459:18;;19452:39;19523:3;19508:19;;19302:231::o;19538:340::-;19740:2;19722:21;;;19779:2;19759:18;;;19752:30;-1:-1:-1;;;19813:2:1;19798:18;;19791:46;19869:2;19854:18;;19712:166::o;19883:401::-;20085:2;20067:21;;;20124:2;20104:18;;;20097:30;20163:34;20158:2;20143:18;;20136:62;-1:-1:-1;;;20229:2:1;20214:18;;20207:35;20274:3;20259:19;;20057:227::o;20289:414::-;20491:2;20473:21;;;20530:2;20510:18;;;20503:30;20569:34;20564:2;20549:18;;20542:62;-1:-1:-1;;;20635:2:1;20620:18;;20613:48;20693:3;20678:19;;20463:240::o;20708:399::-;20910:2;20892:21;;;20949:2;20929:18;;;20922:30;20988:34;20983:2;20968:18;;20961:62;-1:-1:-1;;;21054:2:1;21039:18;;21032:33;21097:3;21082:19;;20882:225::o;21112:420::-;21314:2;21296:21;;;21353:2;21333:18;;;21326:30;-1:-1:-1;;;;;;;;;;;21387:2:1;21372:18;;21365:62;21463:26;21458:2;21443:18;;21436:54;21522:3;21507:19;;21286:246::o;21537:406::-;21739:2;21721:21;;;21778:2;21758:18;;;21751:30;21817:34;21812:2;21797:18;;21790:62;-1:-1:-1;;;21883:2:1;21868:18;;21861:40;21933:3;21918:19;;21711:232::o;21948:423::-;22150:2;22132:21;;;22189:2;22169:18;;;22162:30;-1:-1:-1;;;;;;;;;;;22223:2:1;22208:18;;22201:62;22299:29;22294:2;22279:18;;22272:57;22361:3;22346:19;;22122:249::o;22376:421::-;22578:2;22560:21;;;22617:2;22597:18;;;22590:30;-1:-1:-1;;;;;;;;;;;22651:2:1;22636:18;;22629:62;22727:27;22722:2;22707:18;;22700:55;22787:3;22772:19;;22550:247::o;22802:405::-;23004:2;22986:21;;;23043:2;23023:18;;;23016:30;23082:34;23077:2;23062:18;;23055:62;-1:-1:-1;;;23148:2:1;23133:18;;23126:39;23197:3;23182:19;;22976:231::o;23212:405::-;23414:2;23396:21;;;23453:2;23433:18;;;23426:30;23492:34;23487:2;23472:18;;23465:62;-1:-1:-1;;;23558:2:1;23543:18;;23536:39;23607:3;23592:19;;23386:231::o;23622:404::-;23824:2;23806:21;;;23863:2;23843:18;;;23836:30;23902:34;23897:2;23882:18;;23875:62;-1:-1:-1;;;23968:2:1;23953:18;;23946:38;24016:3;24001:19;;23796:230::o;24031:397::-;24233:2;24215:21;;;24272:2;24252:18;;;24245:30;24311:34;24306:2;24291:18;;24284:62;-1:-1:-1;;;24377:2:1;24362:18;;24355:31;24418:3;24403:19;;24205:223::o;24433:411::-;24635:2;24617:21;;;24674:2;24654:18;;;24647:30;24713:34;24708:2;24693:18;;24686:62;-1:-1:-1;;;24779:2:1;24764:18;;24757:45;24834:3;24819:19;;24607:237::o;25031:248::-;25205:25;;;25261:2;25246:18;;25239:34;25193:2;25178:18;;25160:119::o;25284:192::-;;-1:-1:-1;;;;;25375:6:1;25372:30;25369:2;;;25405:18;;:::i;:::-;-1:-1:-1;25465:4:1;25446:17;;;25442:28;;25359:117::o;25481:128::-;;25552:1;25548:6;25545:1;25542:13;25539:2;;;25558:18;;:::i;:::-;-1:-1:-1;25594:9:1;;25529:80::o;25614:168::-;;25720:1;25716;25712:6;25708:14;25705:1;25702:21;25697:1;25690:9;25683:17;25679:45;25676:2;;;25727:18;;:::i;:::-;-1:-1:-1;25767:9:1;;25666:116::o;25787:125::-;;25855:1;25852;25849:8;25846:2;;;25860:18;;:::i;:::-;-1:-1:-1;25897:9:1;;25836:76::o;25917:258::-;25989:1;25999:113;26013:6;26010:1;26007:13;25999:113;;;26089:11;;;26083:18;26070:11;;;26063:39;26035:2;26028:10;25999:113;;;26130:6;26127:1;26124:13;26121:2;;;-1:-1:-1;;26165:1:1;26147:16;;26140:27;25970:205::o;26180:136::-;;26247:5;26237:2;;26256:18;;:::i;:::-;-1:-1:-1;;;26292:18:1;;26227:89::o;26321:380::-;26406:1;26396:12;;26453:1;26443:12;;;26464:2;;26518:4;26510:6;26506:17;26496:27;;26464:2;26571;26563:6;26560:14;26540:18;26537:38;26534:2;;;26617:10;26612:3;26608:20;26605:1;26598:31;26652:4;26649:1;26642:15;26680:4;26677:1;26670:15;26534:2;;26376:325;;;:::o;26706:249::-;26816:2;26797:13;;-1:-1:-1;;26793:27:1;26781:40;;-1:-1:-1;;;;;26836:34:1;;26872:22;;;26833:62;26830:2;;;26898:18;;:::i;:::-;26934:2;26927:22;-1:-1:-1;;26753:202:1:o;26960:135::-;;-1:-1:-1;;27020:17:1;;27017:2;;;27040:18;;:::i;:::-;-1:-1:-1;27087:1:1;27076:13;;27007:88::o;27100:127::-;27161:10;27156:3;27152:20;27149:1;27142:31;27192:4;27189:1;27182:15;27216:4;27213:1;27206:15;27232:127;27293:10;27288:3;27284:20;27281:1;27274:31;27324:4;27321:1;27314:15;27348:4;27345:1;27338:15;27364:185;;27441:1;27423:16;27420:23;27417:2;;;27491:1;27486:3;27481;27466:27;27522:10;27517:3;27513:20;27407:142;:::o;27554:671::-;;27635:4;27617:16;27614:26;27611:2;;;27643:5;;27611:2;27677;27671:9;-1:-1:-1;;27742:16:1;27738:25;;27735:1;27671:9;27714:50;27793:4;27787:11;27817:16;-1:-1:-1;;;;;27923:2:1;27916:4;27908:6;27904:17;27901:25;27896:2;27888:6;27885:14;27882:45;27879:2;;;27930:5;;;;;;;27879:2;27967:6;27961:4;27957:17;27946:28;;28003:3;27997:10;28030:2;28022:6;28019:14;28016:2;;;28036:5;;;;;;;;28016:2;28120;28101:16;28095:4;28091:27;28087:36;28080:4;28071:6;28066:3;28062:16;28058:27;28055:69;28052:2;;;28127:5;;;;;;;;28052:2;28143:57;28194:4;28185:6;28177;28173:19;28169:30;28163:4;28143:57;:::i;:::-;-1:-1:-1;28216:3:1;;-1:-1:-1;;;;;27601:624:1;:::o;28230:133::-;-1:-1:-1;;;;;;28306:32:1;;28296:43;;28286:2;;28353:1;28350;28343:12;28286:2;28276:87;:::o

Swarm Source

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