ETH Price: $3,249.06 (+3.43%)
Gas: 4 Gwei

Token

Bored Mummy Halloween Candy 21 (BMHC21)
 

Overview

Max Total Supply

0 BMHC21

Holders

566

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xf10f960330ebb0818d68ea24c64f6611ccd9fbec
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:
BoredMummyWakingUpCandy

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-15
*/

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

// File contracts/utils/Context.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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


// File contracts/access/Ownable.sol



pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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


// File contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

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


// File contracts/token/ERC1155/IERC1155.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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


// File contracts/token/ERC1155/IERC1155Receiver.sol



pragma solidity ^0.8.0;

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

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

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


// File contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol



pragma solidity ^0.8.0;

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


// File contracts/utils/Address.sol



pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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


// File contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;

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


// File contracts/token/ERC1155/ERC1155.sol



pragma solidity ^0.8.0;






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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

        return array;
    }
}


// File contracts/utils/Strings.sol



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 contracts/token/ERC1155/extensions/ERC1155MintByUser.sol





pragma solidity ^0.8.0;

contract ERC1155MintByUser is Ownable, ERC1155 {
    using Strings for uint256;

    mapping(uint256 => uint256) public tokenSupply;
    mapping(uint256 => string) public customUri;

    // Contract name
    string public name;
    // Contract symbol
    string public symbol;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _uri
    ) ERC1155(_uri) {
        name = _name;
        symbol = _symbol;
    }

    function uri(uint256 _id)
        public
        view
        virtual
        override
        returns (string memory)
    {
        bytes memory customUriBytes = bytes(customUri[_id]);
        if (customUriBytes.length > 0) {
            return customUri[_id];
        } else {
            return string(abi.encodePacked(super.uri(0), _id.toString()));
        }
    }

    function setURI(string memory newuri) public virtual onlyOwner {
        _setURI(newuri);
    }

    function setCustomURI(uint256 _tokenId, string memory _newURI)
        public
        virtual
        onlyOwner
    {
        customUri[_tokenId] = _newURI;
        emit URI(_newURI, _tokenId);
    }

    function _mintUpdateSupply(
        address _to,
        uint256 _id,
        uint256 _quantity,
        bytes memory _data
    ) internal virtual{
        _mint(_to, _id, _quantity, _data);
        tokenSupply[_id] += _quantity;
    }


    function burn(uint256 _id, uint256 _quantity) public virtual {
      _burn(_msgSender(), _id, _quantity);
    }

}


// File contracts/MICROPAYMENT/signature.sol



pragma solidity ^0.8.6;

contract  Signature {


    /// signature methods.
    function splitSignature(bytes memory sig)
        internal
        pure
        returns (uint8 v, bytes32 r, bytes32 s)
    {
        require(sig.length == 65);

        assembly {
            // first 32 bytes, after the length prefix.
            r := mload(add(sig, 32))
            // second 32 bytes.
            s := mload(add(sig, 64))
            // final byte (first byte of the next 32 bytes).
            v := byte(0, mload(add(sig, 96)))
        }

        return (v, r, s);
    }

    function recoverSigner(bytes32 message, bytes memory sig)
        internal
        pure
        returns (address)
    {
        (uint8 v, bytes32 r, bytes32 s) = splitSignature(sig);

        return ecrecover(message, v, r, s);
    }

    /// builds a prefixed hash to mimic the behavior of eth_sign.
    function prefixed(bytes32 hash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    function verifySignature(bytes32 _message , bytes memory _signature, address _signer) public pure returns (bool){
        return recoverSigner(_message, _signature) == _signer;
    }
}


// File contracts/security/ReentrancyGuard.sol



pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor () {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


// File contracts/BMWU/candy.sol



pragma solidity ^0.8.6;



contract BoredMummyWakingUpCandy is ERC1155MintByUser, Signature, ReentrancyGuard{

    event CandyUpgrade(address owner, uint256 useLv1Candy);

    mapping(uint256 => bool) public nonceUsed;
    address public bmhrr;
    bool public upgradeStart;

    constructor(
        string memory name_,
        string memory symbol_,
        string memory uri_
    ) ERC1155MintByUser(name_, symbol_, uri_) {}

    struct signParams {
        uint256 nonce;
        uint256 tokenId;
        uint256 amount;
        address receiver;
        uint256 expiration;
    }

    function setBmhrrAddress(address _bmhrr) public onlyOwner {
        bmhrr = _bmhrr;
    }

    function isApprovedForAll(address account, address operator) public view override returns (bool) {
        return super.isApprovedForAll(account, operator) || operator == bmhrr;
    }

    function mintBySignature(signParams calldata _p, bytes memory _signature) public nonReentrant{
        require(block.timestamp <= _p.expiration, "ticket expired");
        require(_msgSender() == _p.receiver, "can't claim by other");
        require(!nonceUsed[_p.nonce], "signature used");
        bytes32 message = prefixed(
            keccak256(abi.encodePacked(
                _p.nonce,
                _p.tokenId, 
                _p.amount, 
                _p.receiver,
                _p.expiration
            ))
        );
        require(
            verifySignature(message, _signature, owner()),
            "verification failed"
        );
        nonceUsed[_p.nonce] = true;
        _mintUpdateSupply(_msgSender(), _p.tokenId, _p.amount, "");
    }

    function setUpgradeStart(bool _start) public onlyOwner{
        upgradeStart = _start;
    }

    function upgradeCandy(uint256 useLv1Candy) payable public nonReentrant{
        require(upgradeStart, "upgrade not started");
        require(tokenSupply[2] < 3888, "too many H2 candies");
        require(0 < useLv1Candy && useLv1Candy < 4, "wrong candy number");
        if(useLv1Candy == 1){
            require(msg.value == 150000000000000000, "value error");
            payable(owner()).transfer(msg.value);
        }
        if(useLv1Candy == 2){
            require(msg.value == 80000000000000000, "value error");
            payable(owner()).transfer(msg.value);
        }
        burn(1, useLv1Candy);
        _mintUpdateSupply(_msgSender(), 2, 1, "");
        emit CandyUpgrade(_msgSender(),useLv1Candy);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"uri_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"useLv1Candy","type":"uint256"}],"name":"CandyUpgrade","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bmhrr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"customUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"expiration","type":"uint256"}],"internalType":"struct BoredMummyWakingUpCandy.signParams","name":"_p","type":"tuple"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"mintBySignature","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"nonceUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_bmhrr","type":"address"}],"name":"setBmhrrAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_newURI","type":"string"}],"name":"setCustomURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_start","type":"bool"}],"name":"setUpgradeStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"useLv1Candy","type":"uint256"}],"name":"upgradeCandy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"upgradeStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_message","type":"bytes32"},{"internalType":"bytes","name":"_signature","type":"bytes"},{"internalType":"address","name":"_signer","type":"address"}],"name":"verifySignature","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"}]

60806040523480156200001157600080fd5b5060405162002d0d38038062002d0d83398101604081905262000034916200023b565b600080546001600160a01b031916339081178255604051859285928592839282917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200008681620000c5565b5082516200009c906006906020860190620000de565b508151620000b2906007906020850190620000de565b50506001600855506200031f9350505050565b8051620000da906003906020840190620000de565b5050565b828054620000ec90620002cc565b90600052602060002090601f0160209004810192826200011057600085556200015b565b82601f106200012b57805160ff19168380011785556200015b565b828001600101855582156200015b579182015b828111156200015b5782518255916020019190600101906200013e565b50620001699291506200016d565b5090565b5b808211156200016957600081556001016200016e565b600082601f8301126200019657600080fd5b81516001600160401b0380821115620001b357620001b362000309565b604051601f8301601f19908116603f01168101908282118183101715620001de57620001de62000309565b81604052838152602092508683858801011115620001fb57600080fd5b600091505b838210156200021f578582018301518183018401529082019062000200565b83821115620002315760008385830101525b9695505050505050565b6000806000606084860312156200025157600080fd5b83516001600160401b03808211156200026957600080fd5b620002778783880162000184565b945060208601519150808211156200028e57600080fd5b6200029c8783880162000184565b93506040860151915080821115620002b357600080fd5b50620002c28682870162000184565b9150509250925092565b600181811c90821680620002e157607f821691505b602082108114156200030357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6129de806200032f6000396000f3fe6080604052600436106101805760003560e01c8063715018a6116100d1578063a93a85491161008a578063ccc2822f11610064578063ccc2822f14610489578063e985e9c5146104aa578063f242432a146104ca578063f2fde38b146104ea57600080fd5b8063a93a854914610429578063b390c0ab14610449578063c92a86aa1461046957600080fd5b8063715018a6146103715780638a28a5a2146103865780638da5cb5b146103a657806394d0d3a6146103c457806395d89b41146103f4578063a22cb4651461040957600080fd5b80632eb2c2d61161013e5780633476dbae116101185780633476dbae146102d95780633adf80b4146102ec5780634e1273f41461030c5780635bf9dfa31461033957600080fd5b80632eb2c2d61461027957806331cd4199146102995780633209eb33146102b957600080fd5b8062fdd58e1461018557806301ffc9a7146101b857806302fe5305146101e857806306fdde031461020a5780630e89341c1461022c5780632693ebf21461024c575b600080fd5b34801561019157600080fd5b506101a56101a0366004612247565b61050a565b6040519081526020015b60405180910390f35b3480156101c457600080fd5b506101d86101d33660046123b2565b6105a3565b60405190151581526020016101af565b3480156101f457600080fd5b506102086102033660046123ec565b6105f5565b005b34801561021657600080fd5b5061021f61062b565b6040516101af9190612650565b34801561023857600080fd5b5061021f61024736600461246b565b6106b9565b34801561025857600080fd5b506101a561026736600461246b565b60046020526000908152604090205481565b34801561028557600080fd5b50610208610294366004612110565b610841565b3480156102a557600080fd5b506101d86102b436600461235c565b610aef565b3480156102c557600080fd5b506102086102d43660046120c2565b610b17565b6102086102e736600461246b565b610b63565b3480156102f857600080fd5b50610208610307366004612484565b610e54565b34801561031857600080fd5b5061032c610327366004612271565b610eda565b6040516101af919061260f565b34801561034557600080fd5b50600a54610359906001600160a01b031681565b6040516001600160a01b0390911681526020016101af565b34801561037d57600080fd5b50610208611003565b34801561039257600080fd5b5061021f6103a136600461246b565b611077565b3480156103b257600080fd5b506000546001600160a01b0316610359565b3480156103d057600080fd5b506101d86103df36600461246b565b60096020526000908152604090205460ff1681565b34801561040057600080fd5b5061021f611090565b34801561041557600080fd5b5061020861042436600461221d565b61109d565b34801561043557600080fd5b50610208610444366004612341565b611174565b34801561045557600080fd5b506102086104643660046124b4565b6111bc565b34801561047557600080fd5b50610208610484366004612420565b6111cb565b34801561049557600080fd5b50600a546101d890600160a01b900460ff1681565b3480156104b657600080fd5b506101d86104c53660046120dd565b611493565b3480156104d657600080fd5b506102086104e53660046121b9565b6114dd565b3480156104f657600080fd5b506102086105053660046120c2565b611691565b60006001600160a01b03831661057b5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b5060009081526001602090815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b14806105d457506001600160e01b031982166303a24d0760e21b145b806105ef57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b0316331461061f5760405162461bcd60e51b81526004016105729061273a565b6106288161177b565b50565b6006805461063890612805565b80601f016020809104026020016040519081016040528092919081815260200182805461066490612805565b80156106b15780601f10610686576101008083540402835291602001916106b1565b820191906000526020600020905b81548152906001019060200180831161069457829003601f168201915b505050505081565b6000818152600560205260408120805460609291906106d790612805565b80601f016020809104026020016040519081016040528092919081815260200182805461070390612805565b80156107505780601f1061072557610100808354040283529160200191610750565b820191906000526020600020905b81548152906001019060200180831161073357829003601f168201915b50505050509050600081511115610800576000838152600560205260409020805461077a90612805565b80601f01602080910402602001604051908101604052809291908181526020018280546107a690612805565b80156107f35780601f106107c8576101008083540402835291602001916107f3565b820191906000526020600020905b8154815290600101906020018083116107d657829003601f168201915b5050505050915050919050565b61080a600061178e565b61081384611822565b60405160200161082492919061253d565b604051602081830303815290604052915050919050565b50919050565b81518351146108a35760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610572565b6001600160a01b0384166108c95760405162461bcd60e51b8152600401610572906126ab565b6001600160a01b0385163314806108e557506108e58533611493565b61094c5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610572565b3360005b8451811015610a8157600085828151811061096d5761096d6128c1565b60200260200101519050600085838151811061098b5761098b6128c1565b60209081029190910181015160008481526001835260408082206001600160a01b038e1683529093529190912054909150818110156109dc5760405162461bcd60e51b8152600401610572906126f0565b6109e682826127be565b6001600085815260200190815260200160002060008c6001600160a01b03166001600160a01b0316815260200190815260200160002081905550816001600085815260200190815260200160002060008b6001600160a01b03166001600160a01b031681526020019081526020016000206000828254610a669190612792565b9250508190555050505080610a7a90612866565b9050610950565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610ad1929190612622565b60405180910390a4610ae7818787878787611927565b505050505050565b6000816001600160a01b0316610b058585611a92565b6001600160a01b031614949350505050565b6000546001600160a01b03163314610b415760405162461bcd60e51b81526004016105729061273a565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60026008541415610bb65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610572565b6002600855600a54600160a01b900460ff16610c0a5760405162461bcd60e51b81526020600482015260136024820152721d5c19dc985919481b9bdd081cdd185c9d1959606a1b6044820152606401610572565b600260005260046020527f91da3fd0782e51c6b3986e9e672fd566868e71f3dbc2d6c2cd6fbb3e361af2a754610f3011610c7c5760405162461bcd60e51b8152602060048201526013602482015272746f6f206d616e792048322063616e6469657360681b6044820152606401610572565b806000108015610c8c5750600481105b610ccd5760405162461bcd60e51b81526020600482015260126024820152713bb937b7339031b0b7323c90373ab6b132b960711b6044820152606401610572565b8060011415610d575734670214e8348c4f000014610d1b5760405162461bcd60e51b815260206004820152600b60248201526a3b30b63ab29032b93937b960a91b6044820152606401610572565b600080546040516001600160a01b03909116913480156108fc02929091818181858888f19350505050158015610d55573d6000803e3d6000fd5b505b8060021415610de1573467011c37937e08000014610da55760405162461bcd60e51b815260206004820152600b60248201526a3b30b63ab29032b93937b960a91b6044820152606401610572565b600080546040516001600160a01b03909116913480156108fc02929091818181858888f19350505050158015610ddf573d6000803e3d6000fd5b505b610dec6001826111bc565b610e09336002600160405180602001604052806000815250611b11565b7f3a6c58e4e81ec011235406277c27011742e3c6967df64c926185ad28a522df9133604080516001600160a01b039092168252602082018490520160405180910390a1506001600855565b6000546001600160a01b03163314610e7e5760405162461bcd60e51b81526004016105729061273a565b60008281526005602090815260409091208251610e9d92840190611f13565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b82604051610ece9190612650565b60405180910390a25050565b60608151835114610f3f5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610572565b600083516001600160401b03811115610f5a57610f5a6128d7565b604051908082528060200260200182016040528015610f83578160200160208202803683370190505b50905060005b8451811015610ffb57610fce858281518110610fa757610fa76128c1565b6020026020010151858381518110610fc157610fc16128c1565b602002602001015161050a565b828281518110610fe057610fe06128c1565b6020908102919091010152610ff481612866565b9050610f89565b509392505050565b6000546001600160a01b0316331461102d5760405162461bcd60e51b81526004016105729061273a565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6005602052600090815260409020805461063890612805565b6007805461063890612805565b336001600160a01b03831614156111085760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610572565b3360008181526002602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b0316331461119e5760405162461bcd60e51b81526004016105729061273a565b600a8054911515600160a01b0260ff60a01b19909216919091179055565b6111c7338383611b46565b5050565b6002600854141561121e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610572565b600260085560808201354211156112685760405162461bcd60e51b815260206004820152600e60248201526d1d1a58dad95d08195e1c1a5c995960921b6044820152606401610572565b61127860808301606084016120c2565b6001600160a01b0316336001600160a01b0316146112cf5760405162461bcd60e51b815260206004820152601460248201527331b0b713ba1031b630b4b690313c9037ba3432b960611b6044820152606401610572565b813560009081526009602052604090205460ff16156113215760405162461bcd60e51b815260206004820152600e60248201526d1cda59db985d1d5c99481d5cd95960921b6044820152606401610572565b60006113ea83356020850135604086013561134260808801606089016120c2565b6040805160208101959095528401929092526060808401919091521b6bffffffffffffffffffffffff1916608080830191909152850135609482015260b401604051602081830303815290604052805190602001206040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b905061140381836102b46000546001600160a01b031690565b6114455760405162461bcd60e51b81526020600482015260136024820152721d995c9a599a58d85d1a5bdb8819985a5b1959606a1b6044820152606401610572565b82356000908152600960205260409020805460ff1916600117905561148961146a3390565b8460200135856040013560405180602001604052806000815250611b11565b5050600160085550565b6001600160a01b03808316600090815260026020908152604080832093851683529290529081205460ff16806114d65750600a546001600160a01b038381169116145b9392505050565b6001600160a01b0384166115035760405162461bcd60e51b8152600401610572906126ab565b6001600160a01b03851633148061151f575061151f8533611493565b61157d5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610572565b3361159d81878761158d88611ccc565b61159688611ccc565b5050505050565b60008481526001602090815260408083206001600160a01b038a168452909152902054838110156115e05760405162461bcd60e51b8152600401610572906126f0565b6115ea84826127be565b60008681526001602090815260408083206001600160a01b038c81168552925280832093909355881681529081208054869290611628908490612792565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611688828888888888611d17565b50505050505050565b6000546001600160a01b031633146116bb5760405162461bcd60e51b81526004016105729061273a565b6001600160a01b0381166117205760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610572565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b80516111c7906003906020840190611f13565b60606003805461179d90612805565b80601f01602080910402602001604051908101604052809291908181526020018280546117c990612805565b80156118165780601f106117eb57610100808354040283529160200191611816565b820191906000526020600020905b8154815290600101906020018083116117f957829003601f168201915b50505050509050919050565b6060816118465750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611870578061185a81612866565b91506118699050600a836127aa565b915061184a565b6000816001600160401b0381111561188a5761188a6128d7565b6040519080825280601f01601f1916602001820160405280156118b4576020820181803683370190505b5090505b841561191f576118c96001836127be565b91506118d6600a86612881565b6118e1906030612792565b60f81b8183815181106118f6576118f66128c1565b60200101906001600160f81b031916908160001a905350611918600a866127aa565b94506118b8565b949350505050565b6001600160a01b0384163b15610ae75760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061196b908990899088908890889060040161256c565b602060405180830381600087803b15801561198557600080fd5b505af19250505080156119b5575060408051601f3d908101601f191682019092526119b2918101906123cf565b60015b611a62576119c16128ed565b806308c379a014156119fb57506119d6612909565b806119e157506119fd565b8060405162461bcd60e51b81526004016105729190612650565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610572565b6001600160e01b0319811663bc197c8160e01b146116885760405162461bcd60e51b815260040161057290612663565b600080600080611aa185611de1565b6040805160008152602081018083528b905260ff8516918101919091526060810183905260808101829052929550909350915060019060a0016020604051602081039080840390855afa158015611afc573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b611b1d84848484611e10565b60008381526004602052604081208054849290611b3b908490612792565b909155505050505050565b6001600160a01b038316611ba85760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b6064820152608401610572565b33611bd881856000611bb987611ccc565b611bc287611ccc565b5050604080516020810190915260009052505050565b60008381526001602090815260408083206001600160a01b038816845290915290205482811015611c575760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b6064820152608401610572565b611c6183826127be565b60008581526001602090815260408083206001600160a01b038a811680865291845282852095909555815189815292830188905292938616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611d0657611d066128c1565b602090810291909101015292915050565b6001600160a01b0384163b15610ae75760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611d5b90899089908890889088906004016125ca565b602060405180830381600087803b158015611d7557600080fd5b505af1925050508015611da5575060408051601f3d908101601f19168201909252611da2918101906123cf565b60015b611db1576119c16128ed565b6001600160e01b0319811663f23a6e6160e01b146116885760405162461bcd60e51b815260040161057290612663565b60008060008351604114611df457600080fd5b5050506020810151604082015160609092015160001a92909190565b6001600160a01b038416611e705760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610572565b33611e818160008761158d88611ccc565b60008481526001602090815260408083206001600160a01b038916845290915281208054859290611eb3908490612792565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461159681600087878787611d17565b828054611f1f90612805565b90600052602060002090601f016020900481019282611f415760008555611f87565b82601f10611f5a57805160ff1916838001178555611f87565b82800160010185558215611f87579182015b82811115611f87578251825591602001919060010190611f6c565b50611f93929150611f97565b5090565b5b80821115611f935760008155600101611f98565b80356001600160a01b0381168114611fc357600080fd5b919050565b600082601f830112611fd957600080fd5b81356020611fe68261276f565b604051611ff3828261283a565b8381528281019150858301600585901b8701840188101561201357600080fd5b60005b8581101561203257813584529284019290840190600101612016565b5090979650505050505050565b80358015158114611fc357600080fd5b600082601f83011261206057600080fd5b81356001600160401b03811115612079576120796128d7565b604051612090601f8301601f19166020018261283a565b8181528460208386010111156120a557600080fd5b816020850160208301376000918101602001919091529392505050565b6000602082840312156120d457600080fd5b6114d682611fac565b600080604083850312156120f057600080fd5b6120f983611fac565b915061210760208401611fac565b90509250929050565b600080600080600060a0868803121561212857600080fd5b61213186611fac565b945061213f60208701611fac565b935060408601356001600160401b038082111561215b57600080fd5b61216789838a01611fc8565b9450606088013591508082111561217d57600080fd5b61218989838a01611fc8565b9350608088013591508082111561219f57600080fd5b506121ac8882890161204f565b9150509295509295909350565b600080600080600060a086880312156121d157600080fd5b6121da86611fac565b94506121e860208701611fac565b9350604086013592506060860135915060808601356001600160401b0381111561221157600080fd5b6121ac8882890161204f565b6000806040838503121561223057600080fd5b61223983611fac565b91506121076020840161203f565b6000806040838503121561225a57600080fd5b61226383611fac565b946020939093013593505050565b6000806040838503121561228457600080fd5b82356001600160401b038082111561229b57600080fd5b818501915085601f8301126122af57600080fd5b813560206122bc8261276f565b6040516122c9828261283a565b8381528281019150858301600585901b870184018b10156122e957600080fd5b600096505b84871015612313576122ff81611fac565b8352600196909601959183019183016122ee565b509650508601359250508082111561232a57600080fd5b5061233785828601611fc8565b9150509250929050565b60006020828403121561235357600080fd5b6114d68261203f565b60008060006060848603121561237157600080fd5b8335925060208401356001600160401b0381111561238e57600080fd5b61239a8682870161204f565b9250506123a960408501611fac565b90509250925092565b6000602082840312156123c457600080fd5b81356114d681612992565b6000602082840312156123e157600080fd5b81516114d681612992565b6000602082840312156123fe57600080fd5b81356001600160401b0381111561241457600080fd5b61191f8482850161204f565b60008082840360c081121561243457600080fd5b60a081121561244257600080fd5b5082915060a08301356001600160401b0381111561245f57600080fd5b6123378582860161204f565b60006020828403121561247d57600080fd5b5035919050565b6000806040838503121561249757600080fd5b8235915060208301356001600160401b0381111561245f57600080fd5b600080604083850312156124c757600080fd5b50508035926020909101359150565b600081518084526020808501945080840160005b83811015612506578151875295820195908201906001016124ea565b509495945050505050565b600081518084526125298160208601602086016127d5565b601f01601f19169290920160200192915050565b6000835161254f8184602088016127d5565b8351908301906125638183602088016127d5565b01949350505050565b6001600160a01b0386811682528516602082015260a060408201819052600090612598908301866124d6565b82810360608401526125aa81866124d6565b905082810360808401526125be8185612511565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061260490830184612511565b979650505050505050565b6020815260006114d660208301846124d6565b60408152600061263560408301856124d6565b828103602084015261264781856124d6565b95945050505050565b6020815260006114d66020830184612511565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006001600160401b03821115612788576127886128d7565b5060051b60200190565b600082198211156127a5576127a5612895565b500190565b6000826127b9576127b96128ab565b500490565b6000828210156127d0576127d0612895565b500390565b60005b838110156127f05781810151838201526020016127d8565b838111156127ff576000848401525b50505050565b600181811c9082168061281957607f821691505b6020821081141561083b57634e487b7160e01b600052602260045260246000fd5b601f8201601f191681016001600160401b038111828210171561285f5761285f6128d7565b6040525050565b600060001982141561287a5761287a612895565b5060010190565b600082612890576128906128ab565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d11156129065760046000803e5060005160e01c5b90565b600060443d10156129175790565b6040516003193d81016004833e81513d6001600160401b03816024840111818411171561294657505050505090565b828501915081518181111561295e5750505050505090565b843d87010160208285010111156129785750505050505090565b6129876020828601018761283a565b509095945050505050565b6001600160e01b03198116811461062857600080fdfea26469706673582212202ce2d6d81666e9b128c3e04295983060fec53416f558bd8b3b91b251f7de494e64736f6c63430008060033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001e426f726564204d756d6d792048616c6c6f7765656e2043616e647920323100000000000000000000000000000000000000000000000000000000000000000006424d484332310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005668747470733a2f2f626f7265646d756d6d792e6d7970696e6174612e636c6f75642f697066732f516d536e4b4d72487979326a66476e35786d76326a666961656868397a6965366b4d514d614432543536674c77412f00000000000000000000

Deployed Bytecode

0x6080604052600436106101805760003560e01c8063715018a6116100d1578063a93a85491161008a578063ccc2822f11610064578063ccc2822f14610489578063e985e9c5146104aa578063f242432a146104ca578063f2fde38b146104ea57600080fd5b8063a93a854914610429578063b390c0ab14610449578063c92a86aa1461046957600080fd5b8063715018a6146103715780638a28a5a2146103865780638da5cb5b146103a657806394d0d3a6146103c457806395d89b41146103f4578063a22cb4651461040957600080fd5b80632eb2c2d61161013e5780633476dbae116101185780633476dbae146102d95780633adf80b4146102ec5780634e1273f41461030c5780635bf9dfa31461033957600080fd5b80632eb2c2d61461027957806331cd4199146102995780633209eb33146102b957600080fd5b8062fdd58e1461018557806301ffc9a7146101b857806302fe5305146101e857806306fdde031461020a5780630e89341c1461022c5780632693ebf21461024c575b600080fd5b34801561019157600080fd5b506101a56101a0366004612247565b61050a565b6040519081526020015b60405180910390f35b3480156101c457600080fd5b506101d86101d33660046123b2565b6105a3565b60405190151581526020016101af565b3480156101f457600080fd5b506102086102033660046123ec565b6105f5565b005b34801561021657600080fd5b5061021f61062b565b6040516101af9190612650565b34801561023857600080fd5b5061021f61024736600461246b565b6106b9565b34801561025857600080fd5b506101a561026736600461246b565b60046020526000908152604090205481565b34801561028557600080fd5b50610208610294366004612110565b610841565b3480156102a557600080fd5b506101d86102b436600461235c565b610aef565b3480156102c557600080fd5b506102086102d43660046120c2565b610b17565b6102086102e736600461246b565b610b63565b3480156102f857600080fd5b50610208610307366004612484565b610e54565b34801561031857600080fd5b5061032c610327366004612271565b610eda565b6040516101af919061260f565b34801561034557600080fd5b50600a54610359906001600160a01b031681565b6040516001600160a01b0390911681526020016101af565b34801561037d57600080fd5b50610208611003565b34801561039257600080fd5b5061021f6103a136600461246b565b611077565b3480156103b257600080fd5b506000546001600160a01b0316610359565b3480156103d057600080fd5b506101d86103df36600461246b565b60096020526000908152604090205460ff1681565b34801561040057600080fd5b5061021f611090565b34801561041557600080fd5b5061020861042436600461221d565b61109d565b34801561043557600080fd5b50610208610444366004612341565b611174565b34801561045557600080fd5b506102086104643660046124b4565b6111bc565b34801561047557600080fd5b50610208610484366004612420565b6111cb565b34801561049557600080fd5b50600a546101d890600160a01b900460ff1681565b3480156104b657600080fd5b506101d86104c53660046120dd565b611493565b3480156104d657600080fd5b506102086104e53660046121b9565b6114dd565b3480156104f657600080fd5b506102086105053660046120c2565b611691565b60006001600160a01b03831661057b5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b5060009081526001602090815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b14806105d457506001600160e01b031982166303a24d0760e21b145b806105ef57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b0316331461061f5760405162461bcd60e51b81526004016105729061273a565b6106288161177b565b50565b6006805461063890612805565b80601f016020809104026020016040519081016040528092919081815260200182805461066490612805565b80156106b15780601f10610686576101008083540402835291602001916106b1565b820191906000526020600020905b81548152906001019060200180831161069457829003601f168201915b505050505081565b6000818152600560205260408120805460609291906106d790612805565b80601f016020809104026020016040519081016040528092919081815260200182805461070390612805565b80156107505780601f1061072557610100808354040283529160200191610750565b820191906000526020600020905b81548152906001019060200180831161073357829003601f168201915b50505050509050600081511115610800576000838152600560205260409020805461077a90612805565b80601f01602080910402602001604051908101604052809291908181526020018280546107a690612805565b80156107f35780601f106107c8576101008083540402835291602001916107f3565b820191906000526020600020905b8154815290600101906020018083116107d657829003601f168201915b5050505050915050919050565b61080a600061178e565b61081384611822565b60405160200161082492919061253d565b604051602081830303815290604052915050919050565b50919050565b81518351146108a35760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610572565b6001600160a01b0384166108c95760405162461bcd60e51b8152600401610572906126ab565b6001600160a01b0385163314806108e557506108e58533611493565b61094c5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610572565b3360005b8451811015610a8157600085828151811061096d5761096d6128c1565b60200260200101519050600085838151811061098b5761098b6128c1565b60209081029190910181015160008481526001835260408082206001600160a01b038e1683529093529190912054909150818110156109dc5760405162461bcd60e51b8152600401610572906126f0565b6109e682826127be565b6001600085815260200190815260200160002060008c6001600160a01b03166001600160a01b0316815260200190815260200160002081905550816001600085815260200190815260200160002060008b6001600160a01b03166001600160a01b031681526020019081526020016000206000828254610a669190612792565b9250508190555050505080610a7a90612866565b9050610950565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610ad1929190612622565b60405180910390a4610ae7818787878787611927565b505050505050565b6000816001600160a01b0316610b058585611a92565b6001600160a01b031614949350505050565b6000546001600160a01b03163314610b415760405162461bcd60e51b81526004016105729061273a565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60026008541415610bb65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610572565b6002600855600a54600160a01b900460ff16610c0a5760405162461bcd60e51b81526020600482015260136024820152721d5c19dc985919481b9bdd081cdd185c9d1959606a1b6044820152606401610572565b600260005260046020527f91da3fd0782e51c6b3986e9e672fd566868e71f3dbc2d6c2cd6fbb3e361af2a754610f3011610c7c5760405162461bcd60e51b8152602060048201526013602482015272746f6f206d616e792048322063616e6469657360681b6044820152606401610572565b806000108015610c8c5750600481105b610ccd5760405162461bcd60e51b81526020600482015260126024820152713bb937b7339031b0b7323c90373ab6b132b960711b6044820152606401610572565b8060011415610d575734670214e8348c4f000014610d1b5760405162461bcd60e51b815260206004820152600b60248201526a3b30b63ab29032b93937b960a91b6044820152606401610572565b600080546040516001600160a01b03909116913480156108fc02929091818181858888f19350505050158015610d55573d6000803e3d6000fd5b505b8060021415610de1573467011c37937e08000014610da55760405162461bcd60e51b815260206004820152600b60248201526a3b30b63ab29032b93937b960a91b6044820152606401610572565b600080546040516001600160a01b03909116913480156108fc02929091818181858888f19350505050158015610ddf573d6000803e3d6000fd5b505b610dec6001826111bc565b610e09336002600160405180602001604052806000815250611b11565b7f3a6c58e4e81ec011235406277c27011742e3c6967df64c926185ad28a522df9133604080516001600160a01b039092168252602082018490520160405180910390a1506001600855565b6000546001600160a01b03163314610e7e5760405162461bcd60e51b81526004016105729061273a565b60008281526005602090815260409091208251610e9d92840190611f13565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b82604051610ece9190612650565b60405180910390a25050565b60608151835114610f3f5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610572565b600083516001600160401b03811115610f5a57610f5a6128d7565b604051908082528060200260200182016040528015610f83578160200160208202803683370190505b50905060005b8451811015610ffb57610fce858281518110610fa757610fa76128c1565b6020026020010151858381518110610fc157610fc16128c1565b602002602001015161050a565b828281518110610fe057610fe06128c1565b6020908102919091010152610ff481612866565b9050610f89565b509392505050565b6000546001600160a01b0316331461102d5760405162461bcd60e51b81526004016105729061273a565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6005602052600090815260409020805461063890612805565b6007805461063890612805565b336001600160a01b03831614156111085760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610572565b3360008181526002602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b0316331461119e5760405162461bcd60e51b81526004016105729061273a565b600a8054911515600160a01b0260ff60a01b19909216919091179055565b6111c7338383611b46565b5050565b6002600854141561121e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610572565b600260085560808201354211156112685760405162461bcd60e51b815260206004820152600e60248201526d1d1a58dad95d08195e1c1a5c995960921b6044820152606401610572565b61127860808301606084016120c2565b6001600160a01b0316336001600160a01b0316146112cf5760405162461bcd60e51b815260206004820152601460248201527331b0b713ba1031b630b4b690313c9037ba3432b960611b6044820152606401610572565b813560009081526009602052604090205460ff16156113215760405162461bcd60e51b815260206004820152600e60248201526d1cda59db985d1d5c99481d5cd95960921b6044820152606401610572565b60006113ea83356020850135604086013561134260808801606089016120c2565b6040805160208101959095528401929092526060808401919091521b6bffffffffffffffffffffffff1916608080830191909152850135609482015260b401604051602081830303815290604052805190602001206040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b905061140381836102b46000546001600160a01b031690565b6114455760405162461bcd60e51b81526020600482015260136024820152721d995c9a599a58d85d1a5bdb8819985a5b1959606a1b6044820152606401610572565b82356000908152600960205260409020805460ff1916600117905561148961146a3390565b8460200135856040013560405180602001604052806000815250611b11565b5050600160085550565b6001600160a01b03808316600090815260026020908152604080832093851683529290529081205460ff16806114d65750600a546001600160a01b038381169116145b9392505050565b6001600160a01b0384166115035760405162461bcd60e51b8152600401610572906126ab565b6001600160a01b03851633148061151f575061151f8533611493565b61157d5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610572565b3361159d81878761158d88611ccc565b61159688611ccc565b5050505050565b60008481526001602090815260408083206001600160a01b038a168452909152902054838110156115e05760405162461bcd60e51b8152600401610572906126f0565b6115ea84826127be565b60008681526001602090815260408083206001600160a01b038c81168552925280832093909355881681529081208054869290611628908490612792565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611688828888888888611d17565b50505050505050565b6000546001600160a01b031633146116bb5760405162461bcd60e51b81526004016105729061273a565b6001600160a01b0381166117205760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610572565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b80516111c7906003906020840190611f13565b60606003805461179d90612805565b80601f01602080910402602001604051908101604052809291908181526020018280546117c990612805565b80156118165780601f106117eb57610100808354040283529160200191611816565b820191906000526020600020905b8154815290600101906020018083116117f957829003601f168201915b50505050509050919050565b6060816118465750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611870578061185a81612866565b91506118699050600a836127aa565b915061184a565b6000816001600160401b0381111561188a5761188a6128d7565b6040519080825280601f01601f1916602001820160405280156118b4576020820181803683370190505b5090505b841561191f576118c96001836127be565b91506118d6600a86612881565b6118e1906030612792565b60f81b8183815181106118f6576118f66128c1565b60200101906001600160f81b031916908160001a905350611918600a866127aa565b94506118b8565b949350505050565b6001600160a01b0384163b15610ae75760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061196b908990899088908890889060040161256c565b602060405180830381600087803b15801561198557600080fd5b505af19250505080156119b5575060408051601f3d908101601f191682019092526119b2918101906123cf565b60015b611a62576119c16128ed565b806308c379a014156119fb57506119d6612909565b806119e157506119fd565b8060405162461bcd60e51b81526004016105729190612650565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610572565b6001600160e01b0319811663bc197c8160e01b146116885760405162461bcd60e51b815260040161057290612663565b600080600080611aa185611de1565b6040805160008152602081018083528b905260ff8516918101919091526060810183905260808101829052929550909350915060019060a0016020604051602081039080840390855afa158015611afc573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b611b1d84848484611e10565b60008381526004602052604081208054849290611b3b908490612792565b909155505050505050565b6001600160a01b038316611ba85760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b6064820152608401610572565b33611bd881856000611bb987611ccc565b611bc287611ccc565b5050604080516020810190915260009052505050565b60008381526001602090815260408083206001600160a01b038816845290915290205482811015611c575760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b6064820152608401610572565b611c6183826127be565b60008581526001602090815260408083206001600160a01b038a811680865291845282852095909555815189815292830188905292938616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611d0657611d066128c1565b602090810291909101015292915050565b6001600160a01b0384163b15610ae75760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611d5b90899089908890889088906004016125ca565b602060405180830381600087803b158015611d7557600080fd5b505af1925050508015611da5575060408051601f3d908101601f19168201909252611da2918101906123cf565b60015b611db1576119c16128ed565b6001600160e01b0319811663f23a6e6160e01b146116885760405162461bcd60e51b815260040161057290612663565b60008060008351604114611df457600080fd5b5050506020810151604082015160609092015160001a92909190565b6001600160a01b038416611e705760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610572565b33611e818160008761158d88611ccc565b60008481526001602090815260408083206001600160a01b038916845290915281208054859290611eb3908490612792565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461159681600087878787611d17565b828054611f1f90612805565b90600052602060002090601f016020900481019282611f415760008555611f87565b82601f10611f5a57805160ff1916838001178555611f87565b82800160010185558215611f87579182015b82811115611f87578251825591602001919060010190611f6c565b50611f93929150611f97565b5090565b5b80821115611f935760008155600101611f98565b80356001600160a01b0381168114611fc357600080fd5b919050565b600082601f830112611fd957600080fd5b81356020611fe68261276f565b604051611ff3828261283a565b8381528281019150858301600585901b8701840188101561201357600080fd5b60005b8581101561203257813584529284019290840190600101612016565b5090979650505050505050565b80358015158114611fc357600080fd5b600082601f83011261206057600080fd5b81356001600160401b03811115612079576120796128d7565b604051612090601f8301601f19166020018261283a565b8181528460208386010111156120a557600080fd5b816020850160208301376000918101602001919091529392505050565b6000602082840312156120d457600080fd5b6114d682611fac565b600080604083850312156120f057600080fd5b6120f983611fac565b915061210760208401611fac565b90509250929050565b600080600080600060a0868803121561212857600080fd5b61213186611fac565b945061213f60208701611fac565b935060408601356001600160401b038082111561215b57600080fd5b61216789838a01611fc8565b9450606088013591508082111561217d57600080fd5b61218989838a01611fc8565b9350608088013591508082111561219f57600080fd5b506121ac8882890161204f565b9150509295509295909350565b600080600080600060a086880312156121d157600080fd5b6121da86611fac565b94506121e860208701611fac565b9350604086013592506060860135915060808601356001600160401b0381111561221157600080fd5b6121ac8882890161204f565b6000806040838503121561223057600080fd5b61223983611fac565b91506121076020840161203f565b6000806040838503121561225a57600080fd5b61226383611fac565b946020939093013593505050565b6000806040838503121561228457600080fd5b82356001600160401b038082111561229b57600080fd5b818501915085601f8301126122af57600080fd5b813560206122bc8261276f565b6040516122c9828261283a565b8381528281019150858301600585901b870184018b10156122e957600080fd5b600096505b84871015612313576122ff81611fac565b8352600196909601959183019183016122ee565b509650508601359250508082111561232a57600080fd5b5061233785828601611fc8565b9150509250929050565b60006020828403121561235357600080fd5b6114d68261203f565b60008060006060848603121561237157600080fd5b8335925060208401356001600160401b0381111561238e57600080fd5b61239a8682870161204f565b9250506123a960408501611fac565b90509250925092565b6000602082840312156123c457600080fd5b81356114d681612992565b6000602082840312156123e157600080fd5b81516114d681612992565b6000602082840312156123fe57600080fd5b81356001600160401b0381111561241457600080fd5b61191f8482850161204f565b60008082840360c081121561243457600080fd5b60a081121561244257600080fd5b5082915060a08301356001600160401b0381111561245f57600080fd5b6123378582860161204f565b60006020828403121561247d57600080fd5b5035919050565b6000806040838503121561249757600080fd5b8235915060208301356001600160401b0381111561245f57600080fd5b600080604083850312156124c757600080fd5b50508035926020909101359150565b600081518084526020808501945080840160005b83811015612506578151875295820195908201906001016124ea565b509495945050505050565b600081518084526125298160208601602086016127d5565b601f01601f19169290920160200192915050565b6000835161254f8184602088016127d5565b8351908301906125638183602088016127d5565b01949350505050565b6001600160a01b0386811682528516602082015260a060408201819052600090612598908301866124d6565b82810360608401526125aa81866124d6565b905082810360808401526125be8185612511565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061260490830184612511565b979650505050505050565b6020815260006114d660208301846124d6565b60408152600061263560408301856124d6565b828103602084015261264781856124d6565b95945050505050565b6020815260006114d66020830184612511565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006001600160401b03821115612788576127886128d7565b5060051b60200190565b600082198211156127a5576127a5612895565b500190565b6000826127b9576127b96128ab565b500490565b6000828210156127d0576127d0612895565b500390565b60005b838110156127f05781810151838201526020016127d8565b838111156127ff576000848401525b50505050565b600181811c9082168061281957607f821691505b6020821081141561083b57634e487b7160e01b600052602260045260246000fd5b601f8201601f191681016001600160401b038111828210171561285f5761285f6128d7565b6040525050565b600060001982141561287a5761287a612895565b5060010190565b600082612890576128906128ab565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d11156129065760046000803e5060005160e01c5b90565b600060443d10156129175790565b6040516003193d81016004833e81513d6001600160401b03816024840111818411171561294657505050505090565b828501915081518181111561295e5750505050505090565b843d87010160208285010111156129785750505050505090565b6129876020828601018761283a565b509095945050505050565b6001600160e01b03198116811461062857600080fdfea26469706673582212202ce2d6d81666e9b128c3e04295983060fec53416f558bd8b3b91b251f7de494e64736f6c63430008060033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001e426f726564204d756d6d792048616c6c6f7765656e2043616e647920323100000000000000000000000000000000000000000000000000000000000000000006424d484332310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005668747470733a2f2f626f7265646d756d6d792e6d7970696e6174612e636c6f75642f697066732f516d536e4b4d72487979326a66476e35786d76326a666961656868397a6965366b4d514d614432543536674c77412f00000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Bored Mummy Halloween Candy 21
Arg [1] : symbol_ (string): BMHC21
Arg [2] : uri_ (string): https://boredmummy.mypinata.cloud/ipfs/QmSnKMrHyy2jfGn5xmv2jfiaehh9zie6kMQMaD2T56gLwA/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000001e
Arg [4] : 426f726564204d756d6d792048616c6c6f7765656e2043616e64792032310000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 424d484332310000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000056
Arg [8] : 68747470733a2f2f626f7265646d756d6d792e6d7970696e6174612e636c6f75
Arg [9] : 642f697066732f516d536e4b4d72487979326a66476e35786d76326a66696165
Arg [10] : 6868397a6965366b4d514d614432543536674c77412f00000000000000000000


Deployed Bytecode Sourcemap

41670:2512:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22092:231;;;;;;;;;;-1:-1:-1;22092:231:0;;;;;:::i;:::-;;:::i;:::-;;;23065:25:1;;;23053:2;23038:18;22092:231:0;;;;;;;;21128:297;;;;;;;;;;-1:-1:-1;21128:297:0;;;;;:::i;:::-;;:::i;:::-;;;13043:14:1;;13036:22;13018:41;;13006:2;12991:18;21128:297:0;12973:92:1;36892:97:0;;;;;;;;;;-1:-1:-1;36892:97:0;;;;;:::i;:::-;;:::i;:::-;;36234:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;36502:382::-;;;;;;;;;;-1:-1:-1;36502:382:0;;;;;:::i;:::-;;:::i;36107:46::-;;;;;;;;;;-1:-1:-1;36107:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;24795:1239;;;;;;;;;;-1:-1:-1;24795:1239:0;;;;;:::i;:::-;;:::i;38726:184::-;;;;;;;;;;-1:-1:-1;38726:184:0;;;;;:::i;:::-;;:::i;42256:91::-;;;;;;;;;;-1:-1:-1;42256:91:0;;;;;:::i;:::-;;:::i;43442:735::-;;;;;;:::i;:::-;;:::i;36997:206::-;;;;;;;;;;-1:-1:-1;36997:206:0;;;;;:::i;:::-;;:::i;22489:549::-;;;;;;;;;;-1:-1:-1;22489:549:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;41871:20::-;;;;;;;;;;-1:-1:-1;41871:20:0;;;;-1:-1:-1;;;;;41871:20:0;;;;;;-1:-1:-1;;;;;10423:32:1;;;10405:51;;10393:2;10378:18;41871:20:0;10360:102:1;2784:148:0;;;;;;;;;;;;;:::i;36160:43::-;;;;;;;;;;-1:-1:-1;36160:43:0;;;;;:::i;:::-;;:::i;2133:87::-;;;;;;;;;;-1:-1:-1;2179:7:0;2206:6;-1:-1:-1;;;;;2206:6:0;2133:87;;41823:41;;;;;;;;;;-1:-1:-1;41823:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;36283:20;;;;;;;;;;;;;:::i;23111:311::-;;;;;;;;;;-1:-1:-1;23111:311:0;;;;;:::i;:::-;;:::i;43340:94::-;;;;;;;;;;-1:-1:-1;43340:94:0;;;;;:::i;:::-;;:::i;37464:113::-;;;;;;;;;;-1:-1:-1;37464:113:0;;;;;:::i;:::-;;:::i;42548:784::-;;;;;;;;;;-1:-1:-1;42548:784:0;;;;;:::i;:::-;;:::i;41898:24::-;;;;;;;;;;-1:-1:-1;41898:24:0;;;;-1:-1:-1;;;41898:24:0;;;;;;42355:185;;;;;;;;;;-1:-1:-1;42355:185:0;;;;;:::i;:::-;;:::i;23734:984::-;;;;;;;;;;-1:-1:-1;23734:984:0;;;;;:::i;:::-;;:::i;3087:244::-;;;;;;;;;;-1:-1:-1;3087:244:0;;;;;:::i;:::-;;:::i;22092:231::-;22178:7;-1:-1:-1;;;;;22206:21:0;;22198:77;;;;-1:-1:-1;;;22198:77:0;;14729:2:1;22198:77:0;;;14711:21:1;14768:2;14748:18;;;14741:30;14807:34;14787:18;;;14780:62;-1:-1:-1;;;14858:18:1;;;14851:41;14909:19;;22198:77:0;;;;;;;;;-1:-1:-1;22293:13:0;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;22293:22:0;;;;;;;;;;;;22092:231::o;21128:297::-;21230:4;-1:-1:-1;;;;;;21254:41:0;;-1:-1:-1;;;21254:41:0;;:110;;-1:-1:-1;;;;;;;21312:52:0;;-1:-1:-1;;;21312:52:0;21254:110;:163;;;-1:-1:-1;;;;;;;;;;20066:40:0;;;21381:36;21247:170;21128:297;-1:-1:-1;;21128:297:0:o;36892:97::-;2179:7;2206:6;-1:-1:-1;;;;;2206:6:0;784:10;2353:23;2345:68;;;;-1:-1:-1;;;2345:68:0;;;;;;;:::i;:::-;36966:15:::1;36974:6;36966:7;:15::i;:::-;36892:97:::0;:::o;36234:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36502:382::-;36642:27;36678:14;;;:9;:14;;;;;36642:51;;36611:13;;36642:27;36678:14;36642:51;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36732:1;36708:14;:21;:25;36704:173;;;36757:14;;;;:9;:14;;;;;36750:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36502:382;;;:::o;36704:173::-;36835:12;36845:1;36835:9;:12::i;:::-;36849:14;:3;:12;:14::i;:::-;36818:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36804:61;;;36502:382;;;:::o;36704:173::-;36631:253;36502:382;;;:::o;24795:1239::-;25060:7;:14;25046:3;:10;:28;25038:81;;;;-1:-1:-1;;;25038:81:0;;21263:2:1;25038:81:0;;;21245:21:1;21302:2;21282:18;;;21275:30;21341:34;21321:18;;;21314:62;-1:-1:-1;;;21392:18:1;;;21385:38;21440:19;;25038:81:0;21235:230:1;25038:81:0;-1:-1:-1;;;;;25138:16:0;;25130:66;;;;-1:-1:-1;;;25130:66:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25229:20:0;;784:10;25229:20;;:60;;-1:-1:-1;25253:36:0;25270:4;784:10;42355:185;:::i;25253:36::-;25207:160;;;;-1:-1:-1;;;25207:160:0;;17809:2:1;25207:160:0;;;17791:21:1;17848:2;17828:18;;;17821:30;17887:34;17867:18;;;17860:62;-1:-1:-1;;;17938:18:1;;;17931:48;17996:19;;25207:160:0;17781:240:1;25207:160:0;784:10;25380:16;25497:377;25521:3;:10;25517:1;:14;25497:377;;;25553:10;25566:3;25570:1;25566:6;;;;;;;;:::i;:::-;;;;;;;25553:19;;25587:14;25604:7;25612:1;25604:10;;;;;;;;:::i;:::-;;;;;;;;;;;;25631:19;25653:13;;;:9;:13;;;;;;-1:-1:-1;;;;;25653:19:0;;;;;;;;;;;;25604:10;;-1:-1:-1;25695:21:0;;;;25687:76;;;;-1:-1:-1;;;25687:76:0;;;;;;;:::i;:::-;25800:20;25814:6;25800:11;:20;:::i;:::-;25778:9;:13;25788:2;25778:13;;;;;;;;;;;:19;25792:4;-1:-1:-1;;;;;25778:19:0;-1:-1:-1;;;;;25778:19:0;;;;;;;;;;;;:42;;;;25856:6;25835:9;:13;25845:2;25835:13;;;;;;;;;;;:17;25849:2;-1:-1:-1;;;;;25835:17:0;-1:-1:-1;;;;;25835:17:0;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;25538:336;;;25533:3;;;;:::i;:::-;;;25497:377;;;;25921:2;-1:-1:-1;;;;;25891:47:0;25915:4;-1:-1:-1;;;;;25891:47:0;25905:8;-1:-1:-1;;;;;25891:47:0;;25925:3;25930:7;25891:47;;;;;;;:::i;:::-;;;;;;;;25951:75;25987:8;25997:4;26003:2;26007:3;26012:7;26021:4;25951:35;:75::i;:::-;25027:1007;24795:1239;;;;;:::o;38726:184::-;38833:4;38895:7;-1:-1:-1;;;;;38856:46:0;:35;38870:8;38880:10;38856:13;:35::i;:::-;-1:-1:-1;;;;;38856:46:0;;;38726:184;-1:-1:-1;;;;38726:184:0:o;42256:91::-;2179:7;2206:6;-1:-1:-1;;;;;2206:6:0;784:10;2353:23;2345:68;;;;-1:-1:-1;;;2345:68:0;;;;;;;:::i;:::-;42325:5:::1;:14:::0;;-1:-1:-1;;;;;;42325:14:0::1;-1:-1:-1::0;;;;;42325:14:0;;;::::1;::::0;;;::::1;::::0;;42256:91::o;43442:735::-;40651:1;41248:7;;:19;;41240:63;;;;-1:-1:-1;;;41240:63:0;;22074:2:1;41240:63:0;;;22056:21:1;22113:2;22093:18;;;22086:30;22152:33;22132:18;;;22125:61;22203:18;;41240:63:0;22046:181:1;41240:63:0;40651:1;41381:7;:18;43531:12:::1;::::0;-1:-1:-1;;;43531:12:0;::::1;;;43523:44;;;::::0;-1:-1:-1;;;43523:44:0;;16712:2:1;43523:44:0::1;::::0;::::1;16694:21:1::0;16751:2;16731:18;;;16724:30;-1:-1:-1;;;16770:18:1;;;16763:49;16829:18;;43523:44:0::1;16684:169:1::0;43523:44:0::1;43598:1;43586:14;::::0;:11:::1;:14;::::0;;;43603:4:::1;-1:-1:-1::0;43578:53:0::1;;;::::0;-1:-1:-1;;;43578:53:0;;18571:2:1;43578:53:0::1;::::0;::::1;18553:21:1::0;18610:2;18590:18;;;18583:30;-1:-1:-1;;;18629:18:1;;;18622:49;18688:18;;43578:53:0::1;18543:169:1::0;43578:53:0::1;43654:11;43650:1;:15;:34;;;;;43683:1;43669:11;:15;43650:34;43642:65;;;::::0;-1:-1:-1;;;43642:65:0;;22434:2:1;43642:65:0::1;::::0;::::1;22416:21:1::0;22473:2;22453:18;;;22446:30;-1:-1:-1;;;22492:18:1;;;22485:48;22550:18;;43642:65:0::1;22406:168:1::0;43642:65:0::1;43721:11;43736:1;43721:16;43718:153;;;43761:9;43774:18;43761:31;43753:55;;;::::0;-1:-1:-1;;;43753:55:0;;22781:2:1;43753:55:0::1;::::0;::::1;22763:21:1::0;22820:2;22800:18;;;22793:30;-1:-1:-1;;;22839:18:1;;;22832:41;22890:18;;43753:55:0::1;22753:161:1::0;43753:55:0::1;2179:7:::0;2206:6;;43823:36:::1;::::0;-1:-1:-1;;;;;2206:6:0;;;;43849:9:::1;43823:36:::0;::::1;;;::::0;43849:9;;43823:36;2179:7;43823:36;43849:9;2206:6;43823:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;43718:153;43884:11;43899:1;43884:16;43881:152;;;43924:9;43937:17;43924:30;43916:54;;;::::0;-1:-1:-1;;;43916:54:0;;22781:2:1;43916:54:0::1;::::0;::::1;22763:21:1::0;22820:2;22800:18;;;22793:30;-1:-1:-1;;;22839:18:1;;;22832:41;22890:18;;43916:54:0::1;22753:161:1::0;43916:54:0::1;2179:7:::0;2206:6;;43985:36:::1;::::0;-1:-1:-1;;;;;2206:6:0;;;;44011:9:::1;43985:36:::0;::::1;;;::::0;44011:9;;43985:36;2179:7;43985:36;44011:9;2206:6;43985:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;43881:152;44043:20;44048:1;44051:11;44043:4;:20::i;:::-;44074:41;784:10:::0;44106:1:::1;44109;44074:41;;;;;;;;;;;::::0;:17:::1;:41::i;:::-;44131:38;784:10:::0;44131:38:::1;::::0;;-1:-1:-1;;;;;12055:32:1;;;12037:51;;12119:2;12104:18;;12097:34;;;12010:18;44131:38:0::1;;;;;;;-1:-1:-1::0;40607:1:0;41560:7;:22;43442:735::o;36997:206::-;2179:7;2206:6;-1:-1:-1;;;;;2206:6:0;784:10;2353:23;2345:68;;;;-1:-1:-1;;;2345:68:0;;;;;;;:::i;:::-;37128:19:::1;::::0;;;:9:::1;:19;::::0;;;;;;;:29;;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;;37186:8;37173:22;37177:7;37173:22;;;;;;:::i;:::-;;;;;;;;36997:206:::0;;:::o;22489:549::-;22670:16;22731:3;:10;22712:8;:15;:29;22704:83;;;;-1:-1:-1;;;22704:83:0;;20853:2:1;22704:83:0;;;20835:21:1;20892:2;20872:18;;;20865:30;20931:34;20911:18;;;20904:62;-1:-1:-1;;;20982:18:1;;;20975:39;21031:19;;22704:83:0;20825:231:1;22704:83:0;22800:30;22847:8;:15;-1:-1:-1;;;;;22833:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22833:30:0;;22800:63;;22881:9;22876:122;22900:8;:15;22896:1;:19;22876:122;;;22956:30;22966:8;22975:1;22966:11;;;;;;;;:::i;:::-;;;;;;;22979:3;22983:1;22979:6;;;;;;;;:::i;:::-;;;;;;;22956:9;:30::i;:::-;22937:13;22951:1;22937:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;22917:3;;;:::i;:::-;;;22876:122;;;-1:-1:-1;23017:13:0;22489:549;-1:-1:-1;;;22489:549:0:o;2784:148::-;2179:7;2206:6;-1:-1:-1;;;;;2206:6:0;784:10;2353:23;2345:68;;;;-1:-1:-1;;;2345:68:0;;;;;;;:::i;:::-;2891:1:::1;2875:6:::0;;2854:40:::1;::::0;-1:-1:-1;;;;;2875:6:0;;::::1;::::0;2854:40:::1;::::0;2891:1;;2854:40:::1;2922:1;2905:19:::0;;-1:-1:-1;;;;;;2905:19:0::1;::::0;;2784:148::o;36160:43::-;;;;;;;;;;;;;;;;:::i;36283:20::-;;;;;;;:::i;23111:311::-;784:10;-1:-1:-1;;;;;23214:24:0;;;;23206:78;;;;-1:-1:-1;;;23206:78:0;;20443:2:1;23206:78:0;;;20425:21:1;20482:2;20462:18;;;20455:30;20521:34;20501:18;;;20494:62;-1:-1:-1;;;20572:18:1;;;20565:39;20621:19;;23206:78:0;20415:231:1;23206:78:0;784:10;23297:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23297:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23297:53:0;;;;;;;;;;23366:48;;13018:41:1;;;23297:42:0;;784:10;23366:48;;12991:18:1;23366:48:0;;;;;;;23111:311;;:::o;43340:94::-;2179:7;2206:6;-1:-1:-1;;;;;2206:6:0;784:10;2353:23;2345:68;;;;-1:-1:-1;;;2345:68:0;;;;;;;:::i;:::-;43405:12:::1;:21:::0;;;::::1;;-1:-1:-1::0;;;43405:21:0::1;-1:-1:-1::0;;;;43405:21:0;;::::1;::::0;;;::::1;::::0;;43340:94::o;37464:113::-;37534:35;784:10;37554:3;37559:9;37534:5;:35::i;:::-;37464:113;;:::o;42548:784::-;40651:1;41248:7;;:19;;41240:63;;;;-1:-1:-1;;;41240:63:0;;22074:2:1;41240:63:0;;;22056:21:1;22113:2;22093:18;;;22086:30;22152:33;22132:18;;;22125:61;22203:18;;41240:63:0;22046:181:1;41240:63:0;40651:1;41381:7;:18;42679:13:::1;::::0;::::1;;42660:15;:32;;42652:59;;;::::0;-1:-1:-1;;;42652:59:0;;17060:2:1;42652:59:0::1;::::0;::::1;17042:21:1::0;17099:2;17079:18;;;17072:30;-1:-1:-1;;;17118:18:1;;;17111:44;17172:18;;42652:59:0::1;17032:164:1::0;42652:59:0::1;42746:11;::::0;;;::::1;::::0;::::1;;:::i;:::-;-1:-1:-1::0;;;;;42730:27:0::1;784:10:::0;-1:-1:-1;;;;;42730:27:0::1;;42722:60;;;::::0;-1:-1:-1;;;42722:60:0;;16363:2:1;42722:60:0::1;::::0;::::1;16345:21:1::0;16402:2;16382:18;;;16375:30;-1:-1:-1;;;16421:18:1;;;16414:50;16481:18;;42722:60:0::1;16335:170:1::0;42722:60:0::1;42812:8:::0;::::1;42802:19;::::0;;;:9:::1;:19;::::0;;;;;::::1;;42801:20;42793:47;;;::::0;-1:-1:-1;;;42793:47:0;;18228:2:1;42793:47:0::1;::::0;::::1;18210:21:1::0;18267:2;18247:18;;;18240:30;-1:-1:-1;;;18286:18:1;;;18279:44;18340:18;;42793:47:0::1;18200:164:1::0;42793:47:0::1;42851:15;42869:224;42937:8:::0;::::1;42964:10;::::0;::::1;;42994:9;::::0;::::1;;43023:11;::::0;;;::::1;::::0;::::1;;:::i;:::-;42902:179;::::0;;::::1;::::0;::::1;10004:19:1::0;;;;10039:12;;10032:28;;;;10076:12;;;;10069:28;;;;10131:15;-1:-1:-1;;10127:53:1;43053:13:0::1;10113:12:1::0;;;10106:75;;;;43053:13:0;::::1;;10197::1::0;;;10190:29;10235:13;;42902:179:0::1;;;;;;;;;;;;42892:190;;;;;;38651:58:::0;;9620:66:1;38651:58:0;;;9608:79:1;9703:12;;;9696:28;;;38614:7:0;;9740:12:1;;38651:58:0;;;;;;;;;;;;38641:69;;;;;;38634:76;;38559:159;;;;42869:224:::1;42851:242;;43126:45;43142:7;43151:10;43163:7;2179::::0;2206:6;-1:-1:-1;;;;;2206:6:0;;2133:87;43126:45:::1;43104:114;;;::::0;-1:-1:-1;;;43104:114:0;;19734:2:1;43104:114:0::1;::::0;::::1;19716:21:1::0;19773:2;19753:18;;;19746:30;-1:-1:-1;;;19792:18:1;;;19785:49;19851:18;;43104:114:0::1;19706:169:1::0;43104:114:0::1;43239:8:::0;::::1;43229:19;::::0;;;:9:::1;:19;::::0;;;;:26;;-1:-1:-1;;43229:26:0::1;43251:4;43229:26;::::0;;43266:58:::1;43284:12;784:10:::0;;704:98;43284:12:::1;43298:2;:10;;;43310:2;:9;;;43266:58;;;;;;;;;;;::::0;:17:::1;:58::i;:::-;-1:-1:-1::0;;40607:1:0;41560:7;:22;-1:-1:-1;42548:784:0:o;42355:185::-;-1:-1:-1;;;;;23617:27:0;;;42446:4;23617:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;42470:62;;;-1:-1:-1;42527:5:0;;-1:-1:-1;;;;;42515:17:0;;;42527:5;;42515:17;42470:62;42463:69;42355:185;-1:-1:-1;;;42355:185:0:o;23734:984::-;-1:-1:-1;;;;;23960:16:0;;23952:66;;;;-1:-1:-1;;;23952:66:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24051:20:0;;784:10;24051:20;;:60;;-1:-1:-1;24075:36:0;24092:4;784:10;42355:185;:::i;24075:36::-;24029:151;;;;-1:-1:-1;;;24029:151:0;;15953:2:1;24029:151:0;;;15935:21:1;15992:2;15972:18;;;15965:30;16031:34;16011:18;;;16004:62;-1:-1:-1;;;16082:18:1;;;16075:39;16131:19;;24029:151:0;15925:231:1;24029:151:0;784:10;24237:96;784:10;24268:4;24274:2;24278:21;24296:2;24278:17;:21::i;:::-;24301:25;24319:6;24301:17;:25::i;:::-;24795:1239;;;;;;24237:96;24346:19;24368:13;;;:9;:13;;;;;;;;-1:-1:-1;;;;;24368:19:0;;;;;;;;;;24406:21;;;;24398:76;;;;-1:-1:-1;;;24398:76:0;;;;;;;:::i;:::-;24507:20;24521:6;24507:11;:20;:::i;:::-;24485:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;24485:19:0;;;;;;;;;;:42;;;;24538:17;;;;;;;:27;;24559:6;;24485:13;24538:27;;24559:6;;24538:27;:::i;:::-;;;;-1:-1:-1;;24583:46:0;;;23275:25:1;;;23331:2;23316:18;;23309:34;;;-1:-1:-1;;;;;24583:46:0;;;;;;;;;;;;;;23248:18:1;24583:46:0;;;;;;;24642:68;24673:8;24683:4;24689:2;24693;24697:6;24705:4;24642:30;:68::i;:::-;23941:777;;23734:984;;;;;:::o;3087:244::-;2179:7;2206:6;-1:-1:-1;;;;;2206:6:0;784:10;2353:23;2345:68;;;;-1:-1:-1;;;2345:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3176:22:0;::::1;3168:73;;;::::0;-1:-1:-1;;;3168:73:0;;15141:2:1;3168:73:0::1;::::0;::::1;15123:21:1::0;15180:2;15160:18;;;15153:30;15219:34;15199:18;;;15192:62;-1:-1:-1;;;15270:18:1;;;15263:36;15316:19;;3168:73:0::1;15113:228:1::0;3168:73:0::1;3278:6;::::0;;3257:38:::1;::::0;-1:-1:-1;;;;;3257:38:0;;::::1;::::0;3278:6;::::1;::::0;3257:38:::1;::::0;::::1;3306:6;:17:::0;;-1:-1:-1;;;;;;3306:17:0::1;-1:-1:-1::0;;;;;3306:17:0;;;::::1;::::0;;;::::1;::::0;;3087:244::o;26878:88::-;26945:13;;;;:4;;:13;;;;;:::i;21836:105::-;21896:13;21929:4;21922:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21836:105;;;:::o;34157:723::-;34213:13;34434:10;34430:53;;-1:-1:-1;;34461:10:0;;;;;;;;;;;;-1:-1:-1;;;34461:10:0;;;;;34157:723::o;34430:53::-;34508:5;34493:12;34549:78;34556:9;;34549:78;;34582:8;;;;:::i;:::-;;-1:-1:-1;34605:10:0;;-1:-1:-1;34613:2:0;34605:10;;:::i;:::-;;;34549:78;;;34637:19;34669:6;-1:-1:-1;;;;;34659:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34659:17:0;;34637:39;;34687:154;34694:10;;34687:154;;34721:11;34731:1;34721:11;;:::i;:::-;;-1:-1:-1;34790:10:0;34798:2;34790:5;:10;:::i;:::-;34777:24;;:2;:24;:::i;:::-;34764:39;;34747:6;34754;34747:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;34747:56:0;;;;;;;;-1:-1:-1;34818:11:0;34827:2;34818:11;;:::i;:::-;;;34687:154;;;34865:6;34157:723;-1:-1:-1;;;;34157:723:0:o;32851:799::-;-1:-1:-1;;;;;33105:13:0;;12282:20;12321:8;33101:542;;33141:79;;-1:-1:-1;;;33141:79:0;;-1:-1:-1;;;;;33141:43:0;;;;;:79;;33185:8;;33195:4;;33201:3;;33206:7;;33215:4;;33141:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33141:79:0;;;;;;;;-1:-1:-1;;33141:79:0;;;;;;;;;;;;:::i;:::-;;;33137:495;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;33505:6;33498:14;;-1:-1:-1;;;33498:14:0;;;;;;;;:::i;33137:495::-;;;33554:62;;-1:-1:-1;;;33554:62:0;;13899:2:1;33554:62:0;;;13881:21:1;13938:2;13918:18;;;13911:30;13977:34;13957:18;;;13950:62;-1:-1:-1;;;14028:18:1;;;14021:50;14088:19;;33554:62:0;13871:242:1;33137:495:0;-1:-1:-1;;;;;;33270:64:0;;-1:-1:-1;;;33270:64:0;33266:163;;33359:50;;-1:-1:-1;;;33359:50:0;;;;;;;:::i;38243:241::-;38351:7;38377;38386:9;38397;38410:19;38425:3;38410:14;:19::i;:::-;38449:27;;;;;;;;;;;;13297:25:1;;;13370:4;13358:17;;13338:18;;;13331:45;;;;13392:18;;;13385:34;;;13435:18;;;13428:34;;;38376:53:0;;-1:-1:-1;38376:53:0;;-1:-1:-1;38376:53:0;-1:-1:-1;38449:27:0;;13269:19:1;;38449:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;38449:27:0;;-1:-1:-1;;38449:27:0;;;38243:241;-1:-1:-1;;;;;;;38243:241:0:o;37211:243::-;37373:33;37379:3;37384;37389:9;37400:5;37373;:33::i;:::-;37417:16;;;;:11;:16;;;;;:29;;37437:9;;37417:16;:29;;37437:9;;37417:29;:::i;:::-;;;;-1:-1:-1;;;;;;37211:243:0:o;29227:605::-;-1:-1:-1;;;;;29323:21:0;;29315:69;;;;-1:-1:-1;;;29315:69:0;;18919:2:1;29315:69:0;;;18901:21:1;18958:2;18938:18;;;18931:30;18997:34;18977:18;;;18970:62;-1:-1:-1;;;19048:18:1;;;19041:33;19091:19;;29315:69:0;18891:225:1;29315:69:0;784:10;29441:105;784:10;29472:7;29397:16;29493:21;29511:2;29493:17;:21::i;:::-;29516:25;29534:6;29516:17;:25::i;:::-;-1:-1:-1;;29441:105:0;;;;;;;;;-1:-1:-1;29441:105:0;;-1:-1:-1;;;24795:1239:0;29441:105;29559:22;29584:13;;;:9;:13;;;;;;;;-1:-1:-1;;;;;29584:22:0;;;;;;;;;;29625:24;;;;29617:73;;;;-1:-1:-1;;;29617:73:0;;15548:2:1;29617:73:0;;;15530:21:1;15587:2;15567:18;;;15560:30;15626:34;15606:18;;;15599:62;-1:-1:-1;;;15677:18:1;;;15670:34;15721:19;;29617:73:0;15520:226:1;29617:73:0;29726:23;29743:6;29726:14;:23;:::i;:::-;29701:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;29701:22:0;;;;;;;;;;;;:48;;;;29767:57;;23275:25:1;;;23316:18;;;23309:34;;;29701:13:0;;29767:57;;;;;23248:18:1;29767:57:0;;;;;;;29304:528;;29227:605;;;:::o;33658:198::-;33778:16;;;33792:1;33778:16;;;;;;;;;33724;;33753:22;;33778:16;;;;;;;;;;;;-1:-1:-1;33778:16:0;33753:41;;33816:7;33805:5;33811:1;33805:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;33843:5;33658:198;-1:-1:-1;;33658:198:0:o;32081:762::-;-1:-1:-1;;;;;32310:13:0;;12282:20;12321:8;32306:530;;32346:72;;-1:-1:-1;;;32346:72:0;;-1:-1:-1;;;;;32346:38:0;;;;;:72;;32385:8;;32395:4;;32401:2;;32405:6;;32413:4;;32346:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32346:72:0;;;;;;;;-1:-1:-1;;32346:72:0;;;;;;;;;;;;:::i;:::-;;;32342:483;;;;:::i;:::-;-1:-1:-1;;;;;;32468:59:0;;-1:-1:-1;;;32468:59:0;32464:158;;32552:50;;-1:-1:-1;;;32552:50:0;;;;;;;:::i;37726:509::-;37818:7;37827:9;37838;37873:3;:10;37887:2;37873:16;37865:25;;;;;;-1:-1:-1;;;38004:2:0;37995:12;;37989:19;38075:2;38066:12;;38060:19;38183:2;38174:12;;;38168:19;38165:1;38160:28;;37989:19;;38060;37726:509::o;27367:556::-;-1:-1:-1;;;;;27482:21:0;;27474:67;;;;-1:-1:-1;;;27474:67:0;;21672:2:1;27474:67:0;;;21654:21:1;21711:2;21691:18;;;21684:30;21750:34;21730:18;;;21723:62;-1:-1:-1;;;21801:18:1;;;21794:31;21842:19;;27474:67:0;21644:223:1;27474:67:0;784:10;27598:107;784:10;27554:16;27641:7;27650:21;27668:2;27650:17;:21::i;27598:107::-;27718:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;27718:22:0;;;;;;;;;:32;;27744:6;;27718:13;:32;;27744:6;;27718:32;:::i;:::-;;;;-1:-1:-1;;27766:57:0;;;23275:25:1;;;23331:2;23316:18;;23309:34;;;-1:-1:-1;;;;;27766:57:0;;;;27799:1;;27766:57;;;;;;23248:18:1;27766:57:0;;;;;;;27836:79;27867:8;27885:1;27889:7;27898:2;27902:6;27910:4;27836:30;:79::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:735::-;246:5;299:3;292:4;284:6;280:17;276:27;266:2;;317:1;314;307:12;266:2;353:6;340:20;379:4;402:43;442:2;402:43;:::i;:::-;474:2;468:9;486:31;514:2;506:6;486:31;:::i;:::-;552:18;;;586:15;;;;-1:-1:-1;621:15:1;;;671:1;667:10;;;655:23;;651:32;;648:41;-1:-1:-1;645:2:1;;;702:1;699;692:12;645:2;724:1;734:163;748:2;745:1;742:9;734:163;;;805:17;;793:30;;843:12;;;;875;;;;766:1;759:9;734:163;;;-1:-1:-1;915:6:1;;256:671;-1:-1:-1;;;;;;;256:671:1:o;932:160::-;997:20;;1053:13;;1046:21;1036:32;;1026:2;;1082:1;1079;1072:12;1097:555;1139:5;1192:3;1185:4;1177:6;1173:17;1169:27;1159:2;;1210:1;1207;1200:12;1159:2;1246:6;1233:20;-1:-1:-1;;;;;1268:2:1;1265:26;1262:2;;;1294:18;;:::i;:::-;1343:2;1337:9;1355:67;1410:2;1391:13;;-1:-1:-1;;1387:27:1;1416:4;1383:38;1337:9;1355:67;:::i;:::-;1446:2;1438:6;1431:18;1492:3;1485:4;1480:2;1472:6;1468:15;1464:26;1461:35;1458:2;;;1509:1;1506;1499:12;1458:2;1573;1566:4;1558:6;1554:17;1547:4;1539:6;1535:17;1522:54;1620:1;1596:15;;;1613:4;1592:26;1585:37;;;;1600:6;1149:503;-1:-1:-1;;;1149:503:1:o;1657:186::-;1716:6;1769:2;1757:9;1748:7;1744:23;1740:32;1737:2;;;1785:1;1782;1775:12;1737:2;1808:29;1827:9;1808:29;:::i;1848:260::-;1916:6;1924;1977:2;1965:9;1956:7;1952:23;1948:32;1945:2;;;1993:1;1990;1983:12;1945:2;2016:29;2035:9;2016:29;:::i;:::-;2006:39;;2064:38;2098:2;2087:9;2083:18;2064:38;:::i;:::-;2054:48;;1935:173;;;;;:::o;2113:943::-;2267:6;2275;2283;2291;2299;2352:3;2340:9;2331:7;2327:23;2323:33;2320:2;;;2369:1;2366;2359:12;2320:2;2392:29;2411:9;2392:29;:::i;:::-;2382:39;;2440:38;2474:2;2463:9;2459:18;2440:38;:::i;:::-;2430:48;;2529:2;2518:9;2514:18;2501:32;-1:-1:-1;;;;;2593:2:1;2585:6;2582:14;2579:2;;;2609:1;2606;2599:12;2579:2;2632:61;2685:7;2676:6;2665:9;2661:22;2632:61;:::i;:::-;2622:71;;2746:2;2735:9;2731:18;2718:32;2702:48;;2775:2;2765:8;2762:16;2759:2;;;2791:1;2788;2781:12;2759:2;2814:63;2869:7;2858:8;2847:9;2843:24;2814:63;:::i;:::-;2804:73;;2930:3;2919:9;2915:19;2902:33;2886:49;;2960:2;2950:8;2947:16;2944:2;;;2976:1;2973;2966:12;2944:2;;2999:51;3042:7;3031:8;3020:9;3016:24;2999:51;:::i;:::-;2989:61;;;2310:746;;;;;;;;:::o;3061:606::-;3165:6;3173;3181;3189;3197;3250:3;3238:9;3229:7;3225:23;3221:33;3218:2;;;3267:1;3264;3257:12;3218:2;3290:29;3309:9;3290:29;:::i;:::-;3280:39;;3338:38;3372:2;3361:9;3357:18;3338:38;:::i;:::-;3328:48;;3423:2;3412:9;3408:18;3395:32;3385:42;;3474:2;3463:9;3459:18;3446:32;3436:42;;3529:3;3518:9;3514:19;3501:33;-1:-1:-1;;;;;3549:6:1;3546:30;3543:2;;;3589:1;3586;3579:12;3543:2;3612:49;3653:7;3644:6;3633:9;3629:22;3612:49;:::i;3672:254::-;3737:6;3745;3798:2;3786:9;3777:7;3773:23;3769:32;3766:2;;;3814:1;3811;3804:12;3766:2;3837:29;3856:9;3837:29;:::i;:::-;3827:39;;3885:35;3916:2;3905:9;3901:18;3885:35;:::i;3931:254::-;3999:6;4007;4060:2;4048:9;4039:7;4035:23;4031:32;4028:2;;;4076:1;4073;4066:12;4028:2;4099:29;4118:9;4099:29;:::i;:::-;4089:39;4175:2;4160:18;;;;4147:32;;-1:-1:-1;;;4018:167:1:o;4190:1219::-;4308:6;4316;4369:2;4357:9;4348:7;4344:23;4340:32;4337:2;;;4385:1;4382;4375:12;4337:2;4425:9;4412:23;-1:-1:-1;;;;;4495:2:1;4487:6;4484:14;4481:2;;;4511:1;4508;4501:12;4481:2;4549:6;4538:9;4534:22;4524:32;;4594:7;4587:4;4583:2;4579:13;4575:27;4565:2;;4616:1;4613;4606:12;4565:2;4652;4639:16;4674:4;4697:43;4737:2;4697:43;:::i;:::-;4769:2;4763:9;4781:31;4809:2;4801:6;4781:31;:::i;:::-;4847:18;;;4881:15;;;;-1:-1:-1;4916:11:1;;;4958:1;4954:10;;;4946:19;;4942:28;;4939:41;-1:-1:-1;4936:2:1;;;4993:1;4990;4983:12;4936:2;5015:1;5006:10;;5025:169;5039:2;5036:1;5033:9;5025:169;;;5096:23;5115:3;5096:23;:::i;:::-;5084:36;;5057:1;5050:9;;;;;5140:12;;;;5172;;5025:169;;;-1:-1:-1;5213:6:1;-1:-1:-1;;5257:18:1;;5244:32;;-1:-1:-1;;5288:16:1;;;5285:2;;;5317:1;5314;5307:12;5285:2;;5340:63;5395:7;5384:8;5373:9;5369:24;5340:63;:::i;:::-;5330:73;;;4327:1082;;;;;:::o;5414:180::-;5470:6;5523:2;5511:9;5502:7;5498:23;5494:32;5491:2;;;5539:1;5536;5529:12;5491:2;5562:26;5578:9;5562:26;:::i;5599:462::-;5685:6;5693;5701;5754:2;5742:9;5733:7;5729:23;5725:32;5722:2;;;5770:1;5767;5760:12;5722:2;5806:9;5793:23;5783:33;;5867:2;5856:9;5852:18;5839:32;-1:-1:-1;;;;;5886:6:1;5883:30;5880:2;;;5926:1;5923;5916:12;5880:2;5949:49;5990:7;5981:6;5970:9;5966:22;5949:49;:::i;:::-;5939:59;;;6017:38;6051:2;6040:9;6036:18;6017:38;:::i;:::-;6007:48;;5712:349;;;;;:::o;6066:245::-;6124:6;6177:2;6165:9;6156:7;6152:23;6148:32;6145:2;;;6193:1;6190;6183:12;6145:2;6232:9;6219:23;6251:30;6275:5;6251:30;:::i;6316:249::-;6385:6;6438:2;6426:9;6417:7;6413:23;6409:32;6406:2;;;6454:1;6451;6444:12;6406:2;6486:9;6480:16;6505:30;6529:5;6505:30;:::i;6570:321::-;6639:6;6692:2;6680:9;6671:7;6667:23;6663:32;6660:2;;;6708:1;6705;6698:12;6660:2;6748:9;6735:23;-1:-1:-1;;;;;6773:6:1;6770:30;6767:2;;;6813:1;6810;6803:12;6767:2;6836:49;6877:7;6868:6;6857:9;6853:22;6836:49;:::i;6896:468::-;7003:6;7011;7055:9;7046:7;7042:23;7085:3;7081:2;7077:12;7074:2;;;7102:1;7099;7092:12;7074:2;7126:3;7122:2;7118:12;7115:2;;;7143:1;7140;7133:12;7115:2;;7166:9;7156:19;;7226:3;7215:9;7211:19;7198:33;-1:-1:-1;;;;;7246:6:1;7243:30;7240:2;;;7286:1;7283;7276:12;7240:2;7309:49;7350:7;7341:6;7330:9;7326:22;7309:49;:::i;7369:180::-;7428:6;7481:2;7469:9;7460:7;7456:23;7452:32;7449:2;;;7497:1;7494;7487:12;7449:2;-1:-1:-1;7520:23:1;;7439:110;-1:-1:-1;7439:110:1:o;7554:389::-;7632:6;7640;7693:2;7681:9;7672:7;7668:23;7664:32;7661:2;;;7709:1;7706;7699:12;7661:2;7745:9;7732:23;7722:33;;7806:2;7795:9;7791:18;7778:32;-1:-1:-1;;;;;7825:6:1;7822:30;7819:2;;;7865:1;7862;7855:12;7948:248;8016:6;8024;8077:2;8065:9;8056:7;8052:23;8048:32;8045:2;;;8093:1;8090;8083:12;8045:2;-1:-1:-1;;8116:23:1;;;8186:2;8171:18;;;8158:32;;-1:-1:-1;8035:161:1:o;8201:435::-;8254:3;8292:5;8286:12;8319:6;8314:3;8307:19;8345:4;8374:2;8369:3;8365:12;8358:19;;8411:2;8404:5;8400:14;8432:1;8442:169;8456:6;8453:1;8450:13;8442:169;;;8517:13;;8505:26;;8551:12;;;;8586:15;;;;8478:1;8471:9;8442:169;;;-1:-1:-1;8627:3:1;;8262:374;-1:-1:-1;;;;;8262:374:1:o;8641:257::-;8682:3;8720:5;8714:12;8747:6;8742:3;8735:19;8763:63;8819:6;8812:4;8807:3;8803:14;8796:4;8789:5;8785:16;8763:63;:::i;:::-;8880:2;8859:15;-1:-1:-1;;8855:29:1;8846:39;;;;8887:4;8842:50;;8690:208;-1:-1:-1;;8690:208:1:o;8903:470::-;9082:3;9120:6;9114:13;9136:53;9182:6;9177:3;9170:4;9162:6;9158:17;9136:53;:::i;:::-;9252:13;;9211:16;;;;9274:57;9252:13;9211:16;9308:4;9296:17;;9274:57;:::i;:::-;9347:20;;9090:283;-1:-1:-1;;;;9090:283:1:o;10467:826::-;-1:-1:-1;;;;;10864:15:1;;;10846:34;;10916:15;;10911:2;10896:18;;10889:43;10826:3;10963:2;10948:18;;10941:31;;;10789:4;;10995:57;;11032:19;;11024:6;10995:57;:::i;:::-;11100:9;11092:6;11088:22;11083:2;11072:9;11068:18;11061:50;11134:44;11171:6;11163;11134:44;:::i;:::-;11120:58;;11227:9;11219:6;11215:22;11209:3;11198:9;11194:19;11187:51;11255:32;11280:6;11272;11255:32;:::i;:::-;11247:40;10798:495;-1:-1:-1;;;;;;;;10798:495:1:o;11298:560::-;-1:-1:-1;;;;;11595:15:1;;;11577:34;;11647:15;;11642:2;11627:18;;11620:43;11694:2;11679:18;;11672:34;;;11737:2;11722:18;;11715:34;;;11557:3;11780;11765:19;;11758:32;;;11520:4;;11807:45;;11832:19;;11824:6;11807:45;:::i;:::-;11799:53;11529:329;-1:-1:-1;;;;;;;11529:329:1:o;12142:261::-;12321:2;12310:9;12303:21;12284:4;12341:56;12393:2;12382:9;12378:18;12370:6;12341:56;:::i;12408:465::-;12665:2;12654:9;12647:21;12628:4;12691:56;12743:2;12732:9;12728:18;12720:6;12691:56;:::i;:::-;12795:9;12787:6;12783:22;12778:2;12767:9;12763:18;12756:50;12823:44;12860:6;12852;12823:44;:::i;:::-;12815:52;12637:236;-1:-1:-1;;;;;12637:236:1:o;13473:219::-;13622:2;13611:9;13604:21;13585:4;13642:44;13682:2;13671:9;13667:18;13659:6;13642:44;:::i;14118:404::-;14320:2;14302:21;;;14359:2;14339:18;;;14332:30;14398:34;14393:2;14378:18;;14371:62;-1:-1:-1;;;14464:2:1;14449:18;;14442:38;14512:3;14497:19;;14292:230::o;17201:401::-;17403:2;17385:21;;;17442:2;17422:18;;;17415:30;17481:34;17476:2;17461:18;;17454:62;-1:-1:-1;;;17547:2:1;17532:18;;17525:35;17592:3;17577:19;;17375:227::o;19121:406::-;19323:2;19305:21;;;19362:2;19342:18;;;19335:30;19401:34;19396:2;19381:18;;19374:62;-1:-1:-1;;;19467:2:1;19452:18;;19445:40;19517:3;19502:19;;19295:232::o;19880:356::-;20082:2;20064:21;;;20101:18;;;20094:30;20160:34;20155:2;20140:18;;20133:62;20227:2;20212:18;;20054:182::o;23354:183::-;23414:4;-1:-1:-1;;;;;23439:6:1;23436:30;23433:2;;;23469:18;;:::i;:::-;-1:-1:-1;23514:1:1;23510:14;23526:4;23506:25;;23423:114::o;23542:128::-;23582:3;23613:1;23609:6;23606:1;23603:13;23600:2;;;23619:18;;:::i;:::-;-1:-1:-1;23655:9:1;;23590:80::o;23675:120::-;23715:1;23741;23731:2;;23746:18;;:::i;:::-;-1:-1:-1;23780:9:1;;23721:74::o;23800:125::-;23840:4;23868:1;23865;23862:8;23859:2;;;23873:18;;:::i;:::-;-1:-1:-1;23910:9:1;;23849:76::o;23930:258::-;24002:1;24012:113;24026:6;24023:1;24020:13;24012:113;;;24102:11;;;24096:18;24083:11;;;24076:39;24048:2;24041:10;24012:113;;;24143:6;24140:1;24137:13;24134:2;;;24178:1;24169:6;24164:3;24160:16;24153:27;24134:2;;23983:205;;;:::o;24193:380::-;24272:1;24268:12;;;;24315;;;24336:2;;24390:4;24382:6;24378:17;24368:27;;24336:2;24443;24435:6;24432:14;24412:18;24409:38;24406:2;;;24489:10;24484:3;24480:20;24477:1;24470:31;24524:4;24521:1;24514:15;24552:4;24549:1;24542:15;24578:249;24688:2;24669:13;;-1:-1:-1;;24665:27:1;24653:40;;-1:-1:-1;;;;;24708:34:1;;24744:22;;;24705:62;24702:2;;;24770:18;;:::i;:::-;24806:2;24799:22;-1:-1:-1;;24625:202:1:o;24832:135::-;24871:3;-1:-1:-1;;24892:17:1;;24889:2;;;24912:18;;:::i;:::-;-1:-1:-1;24959:1:1;24948:13;;24879:88::o;24972:112::-;25004:1;25030;25020:2;;25035:18;;:::i;:::-;-1:-1:-1;25069:9:1;;25010:74::o;25089:127::-;25150:10;25145:3;25141:20;25138:1;25131:31;25181:4;25178:1;25171:15;25205:4;25202:1;25195:15;25221:127;25282:10;25277:3;25273:20;25270:1;25263:31;25313:4;25310:1;25303:15;25337:4;25334:1;25327:15;25353:127;25414:10;25409:3;25405:20;25402:1;25395:31;25445:4;25442:1;25435:15;25469:4;25466:1;25459:15;25485:127;25546:10;25541:3;25537:20;25534:1;25527:31;25577:4;25574:1;25567:15;25601:4;25598:1;25591:15;25617:179;25652:3;25694:1;25676:16;25673:23;25670:2;;;25740:1;25737;25734;25719:23;-1:-1:-1;25777:1:1;25771:8;25766:3;25762:18;25670:2;25660:136;:::o;25801:671::-;25840:3;25882:4;25864:16;25861:26;25858:2;;;25848:624;:::o;25858:2::-;25924;25918:9;-1:-1:-1;;25989:16:1;25985:25;;25982:1;25918:9;25961:50;26040:4;26034:11;26064:16;-1:-1:-1;;;;;26170:2:1;26163:4;26155:6;26151:17;26148:25;26143:2;26135:6;26132:14;26129:45;26126:2;;;26177:5;;;;;25848:624;:::o;26126:2::-;26214:6;26208:4;26204:17;26193:28;;26250:3;26244:10;26277:2;26269:6;26266:14;26263:2;;;26283:5;;;;;;25848:624;:::o;26263:2::-;26367;26348:16;26342:4;26338:27;26334:36;26327:4;26318:6;26313:3;26309:16;26305:27;26302:69;26299:2;;;26374:5;;;;;;25848:624;:::o;26299:2::-;26390:57;26441:4;26432:6;26424;26420:19;26416:30;26410:4;26390:57;:::i;:::-;-1:-1:-1;26463:3:1;;25848:624;-1:-1:-1;;;;;25848:624:1:o;26477:131::-;-1:-1:-1;;;;;;26551:32:1;;26541:43;;26531:2;;26598:1;26595;26588:12

Swarm Source

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