ETH Price: $3,457.91 (-1.81%)
Gas: 3 Gwei

Token

Honorary Cool x Clones (HCXC)
 

Overview

Max Total Supply

146 HCXC

Holders

100

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
sinistyre.eth
0x73c295d6ff9e6d629df82691d267145c54b5e327
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:
HonoraryCoolxClones

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 5 of 10: HonoraryCoolxClones.sol
// SPDX-License-Identifier: MIT

/*
 ___  ___  ________  ________  ___       ___  ___  ________      
|\  \|\  \|\   __  \|\   ___ \|\  \     |\  \|\  \|\   __  \     
\ \  \\\  \ \  \|\  \ \  \_|\ \ \  \    \ \  \\\  \ \  \|\  \    
 \ \   __  \ \  \\\  \ \  \ \\ \ \  \    \ \   __  \ \  \\\  \   
  \ \  \ \  \ \  \\\  \ \  \_\\ \ \  \____\ \  \ \  \ \  \\\  \  
   \ \__\ \__\ \_______\ \_______\ \_______\ \__\ \__\ \_____  \ 
    \|__|\|__|\|_______|\|_______|\|_______|\|__|\|__|\|___| \__\
                                                            \|__|
*/

pragma solidity ^0.8.0;

import "./ERC1155.sol";
import "./Ownable.sol";

contract HonoraryCoolxClones is ERC1155, Ownable {
    
  string public name;
  string public symbol;
  mapping(uint => string) public tokenURI;
  uint256 internal supply = 2;

  constructor() ERC1155("") {
    name = "Honorary Cool x Clones";
    symbol = "HCXC";
    setURI(1, "ipfs://Qmb7A2FMxvFVQ3djKUdFfsySq286etRDQCNhgdm3XEop5w/1.json");
    setURI(2, "ipfs://Qmb7A2FMxvFVQ3djKUdFfsySq286etRDQCNhgdm3XEop5w/2.json");
  }

  function kingMint(address _to) external {
    if(msg.sender != owner()) {
      require(msg.sender == _to, "KCXC: Must mint to your own wallet");
      require(balanceOf(_to, 1) < 1, "KCXC: Only one mint per wallet");
    }
    _mint(_to, 1, 1, "");
  }

  function queenMint(address _to) external {
    if(msg.sender != owner()) {
      require(msg.sender == _to, "QCXC: Must mint to your own wallet");
      require(balanceOf(_to, 2) < 1, "QCXC: Only one mint per wallet");
    }
    _mint(_to, 2, 1, "");
  }

  function honoraryMint(address _to, string memory _uri) public onlyOwner {
    _mint(_to, supply + 1, 1, "");
    setURI(supply + 1, _uri);
    supply++;
  }

  function setURI(uint _id, string memory _uri) public onlyOwner {
    tokenURI[_id] = _uri;
    emit URI(_uri, _id);
  }

  function uri(uint _id) public override view returns (string memory) {
    return tokenURI[_id];
  }
}

File 1 of 10: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

pragma solidity ^0.8.0;

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

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

File 3 of 10: ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

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

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

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

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

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

        emit TransferSingle(operator, from, address(0), id, amount);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

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

        address operator = _msgSender();

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

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

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

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

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

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

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

    /**
     * @dev Hook that is called after 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 _afterTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

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

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

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

        return array;
    }
}

File 4 of 10: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 6 of 10: IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

File 7 of 10: IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;

import "./IERC1155.sol";

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

File 8 of 10: IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"string","name":"_uri","type":"string"}],"name":"honoraryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"kingMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"queenMint","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"_id","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"}],"name":"setURI","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":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

608060405260026007553480156200001657600080fd5b50604080516020810190915260008152620000318162000104565b506200003d336200011d565b6040805180820190915260168082527f486f6e6f7261727920436f6f6c207820436c6f6e657300000000000000000000602090920191825262000083916004916200022e565b50604080518082019091526004808252634843584360e01b6020909201918252620000b1916005916200022e565b50620000d860016040518060600160405280603c81526020016200200c603c91396200016f565b620000fe60026040518060600160405280603c815260200162001fd0603c91396200016f565b62000369565b8051620001199060029060208401906200022e565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6003546001600160a01b03163314620001ce5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b60008281526006602090815260409091208251620001ef928401906200022e565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b82604051620002229190620002d4565b60405180910390a25050565b8280546200023c906200032c565b90600052602060002090601f016020900481019282620002605760008555620002ab565b82601f106200027b57805160ff1916838001178555620002ab565b82800160010185558215620002ab579182015b82811115620002ab5782518255916020019190600101906200028e565b50620002b9929150620002bd565b5090565b5b80821115620002b95760008155600101620002be565b600060208083528351808285015260005b818110156200030357858101830151858201604001528201620002e5565b8181111562000316576000604083870101525b50601f01601f1916929092016040019392505050565b600181811c908216806200034157607f821691505b602082108114156200036357634e487b7160e01b600052602260045260246000fd5b50919050565b611c5780620003796000396000f3fe608060405234801561001057600080fd5b50600436106101155760003560e01c8063715018a6116100a2578063a22cb46511610071578063a22cb46514610237578063c87b56dd1461024a578063e985e9c51461025d578063f242432a14610299578063f2fde38b146102ac57600080fd5b8063715018a6146101f9578063862440e2146102015780638da5cb5b1461021457806395d89b411461022f57600080fd5b80630e89341c116100e95780630e89341c1461018d5780632eb2c2d6146101a05780634718c764146101b35780634e1273f4146101c65780635e6daa55146101e657600080fd5b8062fdd58e1461011a578063017df5fa1461014057806301ffc9a71461015557806306fdde0314610178575b600080fd5b61012d610128366004611664565b6102bf565b6040519081526020015b60405180910390f35b61015361014e366004611616565b610356565b005b610168610163366004611755565b6103db565b6040519015158152602001610137565b61018061042d565b6040516101379190611945565b61018061019b36600461178f565b6104bb565b6101536101ae3660046114cb565b61055d565b6101536101c1366004611476565b6105f4565b6101d96101d436600461168e565b6106e3565b6040516101379190611904565b6101536101f4366004611476565b61080d565b6101536108f8565b61015361020f3660046117a8565b61092e565b6003546040516001600160a01b039091168152602001610137565b6101806109b4565b6101536102453660046115da565b6109c1565b61018061025836600461178f565b6109d0565b61016861026b366004611498565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6101536102a7366004611575565b6109e9565b6101536102ba366004611476565b610a70565b60006001600160a01b0383166103305760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b6003546001600160a01b031633146103805760405162461bcd60e51b815260040161032790611a2f565b6103aa8260075460016103939190611a88565b600160405180602001604052806000815250610b08565b6103c260075460016103bc9190611a88565b8261092e565b600780549060006103d283611b08565b91905055505050565b60006001600160e01b03198216636cdb3d1360e11b148061040c57506001600160e01b031982166303a24d0760e21b145b8061042757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6004805461043a90611aa0565b80601f016020809104026020016040519081016040528092919081815260200182805461046690611aa0565b80156104b35780601f10610488576101008083540402835291602001916104b3565b820191906000526020600020905b81548152906001019060200180831161049657829003601f168201915b505050505081565b60008181526006602052604090208054606091906104d890611aa0565b80601f016020809104026020016040519081016040528092919081815260200182805461050490611aa0565b80156105515780601f1061052657610100808354040283529160200191610551565b820191906000526020600020905b81548152906001019060200180831161053457829003601f168201915b50505050509050919050565b6001600160a01b0385163314806105795750610579853361026b565b6105e05760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610327565b6105ed8585858585610c1c565b5050505050565b6003546001600160a01b031633146106c357336001600160a01b038216146106695760405162461bcd60e51b815260206004820152602260248201527f514358433a204d757374206d696e7420746f20796f7572206f776e2077616c6c604482015261195d60f21b6064820152608401610327565b60016106768260026102bf565b106106c35760405162461bcd60e51b815260206004820152601e60248201527f514358433a204f6e6c79206f6e65206d696e74207065722077616c6c657400006044820152606401610327565b6106e0816002600160405180602001604052806000815250610b08565b50565b606081518351146107485760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610327565b6000835167ffffffffffffffff81111561076457610764611b4f565b60405190808252806020026020018201604052801561078d578160200160208202803683370190505b50905060005b8451811015610805576107d88582815181106107b1576107b1611b39565b60200260200101518583815181106107cb576107cb611b39565b60200260200101516102bf565b8282815181106107ea576107ea611b39565b60209081029190910101526107fe81611b08565b9050610793565b509392505050565b6003546001600160a01b031633146108dc57336001600160a01b038216146108825760405162461bcd60e51b815260206004820152602260248201527f4b4358433a204d757374206d696e7420746f20796f7572206f776e2077616c6c604482015261195d60f21b6064820152608401610327565b600161088f8260016102bf565b106108dc5760405162461bcd60e51b815260206004820152601e60248201527f4b4358433a204f6e6c79206f6e65206d696e74207065722077616c6c657400006044820152606401610327565b6106e08160018060405180602001604052806000815250610b08565b6003546001600160a01b031633146109225760405162461bcd60e51b815260040161032790611a2f565b61092c6000610df9565b565b6003546001600160a01b031633146109585760405162461bcd60e51b815260040161032790611a2f565b60008281526006602090815260409091208251610977928401906112d6565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b826040516109a89190611945565b60405180910390a25050565b6005805461043a90611aa0565b6109cc338383610e4b565b5050565b6006602052600090815260409020805461043a90611aa0565b6001600160a01b038516331480610a055750610a05853361026b565b610a635760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610327565b6105ed8585858585610f2c565b6003546001600160a01b03163314610a9a5760405162461bcd60e51b815260040161032790611a2f565b6001600160a01b038116610aff5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610327565b6106e081610df9565b6001600160a01b038416610b685760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610327565b336000610b7485611056565b90506000610b8185611056565b90506000868152602081815260408083206001600160a01b038b16845290915281208054879290610bb3908490611a88565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610c13836000898989896110a1565b50505050505050565b8151835114610c7e5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610327565b6001600160a01b038416610ca45760405162461bcd60e51b8152600401610327906119a0565b3360005b8451811015610d8b576000858281518110610cc557610cc5611b39565b602002602001015190506000858381518110610ce357610ce3611b39565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610d335760405162461bcd60e51b8152600401610327906119e5565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610d70908490611a88565b9250508190555050505080610d8490611b08565b9050610ca8565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610ddb929190611917565b60405180910390a4610df181878787878761120c565b505050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415610ebf5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610327565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038416610f525760405162461bcd60e51b8152600401610327906119a0565b336000610f5e85611056565b90506000610f6b85611056565b90506000868152602081815260408083206001600160a01b038c16845290915290205485811015610fae5760405162461bcd60e51b8152600401610327906119e5565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290610feb908490611a88565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461104b848a8a8a8a8a6110a1565b505050505050505050565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061109057611090611b39565b602090810291909101015292915050565b6001600160a01b0384163b15610df15760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906110e590899089908890889088906004016118bf565b602060405180830381600087803b1580156110ff57600080fd5b505af192505050801561112f575060408051601f3d908101601f1916820190925261112c91810190611772565b60015b6111dc5761113b611b65565b806308c379a014156111755750611150611b81565b8061115b5750611177565b8060405162461bcd60e51b81526004016103279190611945565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610327565b6001600160e01b0319811663f23a6e6160e01b14610c135760405162461bcd60e51b815260040161032790611958565b6001600160a01b0384163b15610df15760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906112509089908990889088908890600401611861565b602060405180830381600087803b15801561126a57600080fd5b505af192505050801561129a575060408051601f3d908101601f1916820190925261129791810190611772565b60015b6112a65761113b611b65565b6001600160e01b0319811663bc197c8160e01b14610c135760405162461bcd60e51b815260040161032790611958565b8280546112e290611aa0565b90600052602060002090601f016020900481019282611304576000855561134a565b82601f1061131d57805160ff191683800117855561134a565b8280016001018555821561134a579182015b8281111561134a57825182559160200191906001019061132f565b5061135692915061135a565b5090565b5b80821115611356576000815560010161135b565b80356001600160a01b038116811461138657600080fd5b919050565b600082601f83011261139c57600080fd5b813560206113a982611a64565b6040516113b68282611adb565b8381528281019150858301600585901b870184018810156113d657600080fd5b60005b858110156113f5578135845292840192908401906001016113d9565b5090979650505050505050565b600082601f83011261141357600080fd5b813567ffffffffffffffff81111561142d5761142d611b4f565b604051611444601f8301601f191660200182611adb565b81815284602083860101111561145957600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561148857600080fd5b6114918261136f565b9392505050565b600080604083850312156114ab57600080fd5b6114b48361136f565b91506114c26020840161136f565b90509250929050565b600080600080600060a086880312156114e357600080fd5b6114ec8661136f565b94506114fa6020870161136f565b9350604086013567ffffffffffffffff8082111561151757600080fd5b61152389838a0161138b565b9450606088013591508082111561153957600080fd5b61154589838a0161138b565b9350608088013591508082111561155b57600080fd5b5061156888828901611402565b9150509295509295909350565b600080600080600060a0868803121561158d57600080fd5b6115968661136f565b94506115a46020870161136f565b93506040860135925060608601359150608086013567ffffffffffffffff8111156115ce57600080fd5b61156888828901611402565b600080604083850312156115ed57600080fd5b6115f68361136f565b91506020830135801515811461160b57600080fd5b809150509250929050565b6000806040838503121561162957600080fd5b6116328361136f565b9150602083013567ffffffffffffffff81111561164e57600080fd5b61165a85828601611402565b9150509250929050565b6000806040838503121561167757600080fd5b6116808361136f565b946020939093013593505050565b600080604083850312156116a157600080fd5b823567ffffffffffffffff808211156116b957600080fd5b818501915085601f8301126116cd57600080fd5b813560206116da82611a64565b6040516116e78282611adb565b8381528281019150858301600585901b870184018b101561170757600080fd5b600096505b848710156117315761171d8161136f565b83526001969096019591830191830161170c565b509650508601359250508082111561174857600080fd5b5061165a8582860161138b565b60006020828403121561176757600080fd5b813561149181611c0b565b60006020828403121561178457600080fd5b815161149181611c0b565b6000602082840312156117a157600080fd5b5035919050565b600080604083850312156117bb57600080fd5b82359150602083013567ffffffffffffffff81111561164e57600080fd5b600081518084526020808501945080840160005b83811015611809578151875295820195908201906001016117ed565b509495945050505050565b6000815180845260005b8181101561183a5760208185018101518683018201520161181e565b8181111561184c576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0386811682528516602082015260a06040820181905260009061188d908301866117d9565b828103606084015261189f81866117d9565b905082810360808401526118b38185611814565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906118f990830184611814565b979650505050505050565b60208152600061149160208301846117d9565b60408152600061192a60408301856117d9565b828103602084015261193c81856117d9565b95945050505050565b6020815260006114916020830184611814565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff821115611a7e57611a7e611b4f565b5060051b60200190565b60008219821115611a9b57611a9b611b23565b500190565b600181811c90821680611ab457607f821691505b60208210811415611ad557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715611b0157611b01611b4f565b6040525050565b6000600019821415611b1c57611b1c611b23565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115611b7e5760046000803e5060005160e01c5b90565b600060443d1015611b8f5790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611bbf57505050505090565b8285019150815181811115611bd75750505050505090565b843d8701016020828501011115611bf15750505050505090565b611c0060208286010187611adb565b509095945050505050565b6001600160e01b0319811681146106e057600080fdfea2646970667358221220e06f908f80962a6ea68febe3f7783f0cf427fe556c15589344b47bf3999ddd2e64736f6c63430008070033697066733a2f2f516d62374132464d787646565133646a4b55644666737953713238366574524451434e6867646d3358456f7035772f322e6a736f6e697066733a2f2f516d62374132464d787646565133646a4b55644666737953713238366574524451434e6867646d3358456f7035772f312e6a736f6e

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101155760003560e01c8063715018a6116100a2578063a22cb46511610071578063a22cb46514610237578063c87b56dd1461024a578063e985e9c51461025d578063f242432a14610299578063f2fde38b146102ac57600080fd5b8063715018a6146101f9578063862440e2146102015780638da5cb5b1461021457806395d89b411461022f57600080fd5b80630e89341c116100e95780630e89341c1461018d5780632eb2c2d6146101a05780634718c764146101b35780634e1273f4146101c65780635e6daa55146101e657600080fd5b8062fdd58e1461011a578063017df5fa1461014057806301ffc9a71461015557806306fdde0314610178575b600080fd5b61012d610128366004611664565b6102bf565b6040519081526020015b60405180910390f35b61015361014e366004611616565b610356565b005b610168610163366004611755565b6103db565b6040519015158152602001610137565b61018061042d565b6040516101379190611945565b61018061019b36600461178f565b6104bb565b6101536101ae3660046114cb565b61055d565b6101536101c1366004611476565b6105f4565b6101d96101d436600461168e565b6106e3565b6040516101379190611904565b6101536101f4366004611476565b61080d565b6101536108f8565b61015361020f3660046117a8565b61092e565b6003546040516001600160a01b039091168152602001610137565b6101806109b4565b6101536102453660046115da565b6109c1565b61018061025836600461178f565b6109d0565b61016861026b366004611498565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6101536102a7366004611575565b6109e9565b6101536102ba366004611476565b610a70565b60006001600160a01b0383166103305760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b6003546001600160a01b031633146103805760405162461bcd60e51b815260040161032790611a2f565b6103aa8260075460016103939190611a88565b600160405180602001604052806000815250610b08565b6103c260075460016103bc9190611a88565b8261092e565b600780549060006103d283611b08565b91905055505050565b60006001600160e01b03198216636cdb3d1360e11b148061040c57506001600160e01b031982166303a24d0760e21b145b8061042757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6004805461043a90611aa0565b80601f016020809104026020016040519081016040528092919081815260200182805461046690611aa0565b80156104b35780601f10610488576101008083540402835291602001916104b3565b820191906000526020600020905b81548152906001019060200180831161049657829003601f168201915b505050505081565b60008181526006602052604090208054606091906104d890611aa0565b80601f016020809104026020016040519081016040528092919081815260200182805461050490611aa0565b80156105515780601f1061052657610100808354040283529160200191610551565b820191906000526020600020905b81548152906001019060200180831161053457829003601f168201915b50505050509050919050565b6001600160a01b0385163314806105795750610579853361026b565b6105e05760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610327565b6105ed8585858585610c1c565b5050505050565b6003546001600160a01b031633146106c357336001600160a01b038216146106695760405162461bcd60e51b815260206004820152602260248201527f514358433a204d757374206d696e7420746f20796f7572206f776e2077616c6c604482015261195d60f21b6064820152608401610327565b60016106768260026102bf565b106106c35760405162461bcd60e51b815260206004820152601e60248201527f514358433a204f6e6c79206f6e65206d696e74207065722077616c6c657400006044820152606401610327565b6106e0816002600160405180602001604052806000815250610b08565b50565b606081518351146107485760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610327565b6000835167ffffffffffffffff81111561076457610764611b4f565b60405190808252806020026020018201604052801561078d578160200160208202803683370190505b50905060005b8451811015610805576107d88582815181106107b1576107b1611b39565b60200260200101518583815181106107cb576107cb611b39565b60200260200101516102bf565b8282815181106107ea576107ea611b39565b60209081029190910101526107fe81611b08565b9050610793565b509392505050565b6003546001600160a01b031633146108dc57336001600160a01b038216146108825760405162461bcd60e51b815260206004820152602260248201527f4b4358433a204d757374206d696e7420746f20796f7572206f776e2077616c6c604482015261195d60f21b6064820152608401610327565b600161088f8260016102bf565b106108dc5760405162461bcd60e51b815260206004820152601e60248201527f4b4358433a204f6e6c79206f6e65206d696e74207065722077616c6c657400006044820152606401610327565b6106e08160018060405180602001604052806000815250610b08565b6003546001600160a01b031633146109225760405162461bcd60e51b815260040161032790611a2f565b61092c6000610df9565b565b6003546001600160a01b031633146109585760405162461bcd60e51b815260040161032790611a2f565b60008281526006602090815260409091208251610977928401906112d6565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b826040516109a89190611945565b60405180910390a25050565b6005805461043a90611aa0565b6109cc338383610e4b565b5050565b6006602052600090815260409020805461043a90611aa0565b6001600160a01b038516331480610a055750610a05853361026b565b610a635760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610327565b6105ed8585858585610f2c565b6003546001600160a01b03163314610a9a5760405162461bcd60e51b815260040161032790611a2f565b6001600160a01b038116610aff5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610327565b6106e081610df9565b6001600160a01b038416610b685760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610327565b336000610b7485611056565b90506000610b8185611056565b90506000868152602081815260408083206001600160a01b038b16845290915281208054879290610bb3908490611a88565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610c13836000898989896110a1565b50505050505050565b8151835114610c7e5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610327565b6001600160a01b038416610ca45760405162461bcd60e51b8152600401610327906119a0565b3360005b8451811015610d8b576000858281518110610cc557610cc5611b39565b602002602001015190506000858381518110610ce357610ce3611b39565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610d335760405162461bcd60e51b8152600401610327906119e5565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610d70908490611a88565b9250508190555050505080610d8490611b08565b9050610ca8565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610ddb929190611917565b60405180910390a4610df181878787878761120c565b505050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415610ebf5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610327565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038416610f525760405162461bcd60e51b8152600401610327906119a0565b336000610f5e85611056565b90506000610f6b85611056565b90506000868152602081815260408083206001600160a01b038c16845290915290205485811015610fae5760405162461bcd60e51b8152600401610327906119e5565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290610feb908490611a88565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461104b848a8a8a8a8a6110a1565b505050505050505050565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061109057611090611b39565b602090810291909101015292915050565b6001600160a01b0384163b15610df15760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906110e590899089908890889088906004016118bf565b602060405180830381600087803b1580156110ff57600080fd5b505af192505050801561112f575060408051601f3d908101601f1916820190925261112c91810190611772565b60015b6111dc5761113b611b65565b806308c379a014156111755750611150611b81565b8061115b5750611177565b8060405162461bcd60e51b81526004016103279190611945565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610327565b6001600160e01b0319811663f23a6e6160e01b14610c135760405162461bcd60e51b815260040161032790611958565b6001600160a01b0384163b15610df15760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906112509089908990889088908890600401611861565b602060405180830381600087803b15801561126a57600080fd5b505af192505050801561129a575060408051601f3d908101601f1916820190925261129791810190611772565b60015b6112a65761113b611b65565b6001600160e01b0319811663bc197c8160e01b14610c135760405162461bcd60e51b815260040161032790611958565b8280546112e290611aa0565b90600052602060002090601f016020900481019282611304576000855561134a565b82601f1061131d57805160ff191683800117855561134a565b8280016001018555821561134a579182015b8281111561134a57825182559160200191906001019061132f565b5061135692915061135a565b5090565b5b80821115611356576000815560010161135b565b80356001600160a01b038116811461138657600080fd5b919050565b600082601f83011261139c57600080fd5b813560206113a982611a64565b6040516113b68282611adb565b8381528281019150858301600585901b870184018810156113d657600080fd5b60005b858110156113f5578135845292840192908401906001016113d9565b5090979650505050505050565b600082601f83011261141357600080fd5b813567ffffffffffffffff81111561142d5761142d611b4f565b604051611444601f8301601f191660200182611adb565b81815284602083860101111561145957600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561148857600080fd5b6114918261136f565b9392505050565b600080604083850312156114ab57600080fd5b6114b48361136f565b91506114c26020840161136f565b90509250929050565b600080600080600060a086880312156114e357600080fd5b6114ec8661136f565b94506114fa6020870161136f565b9350604086013567ffffffffffffffff8082111561151757600080fd5b61152389838a0161138b565b9450606088013591508082111561153957600080fd5b61154589838a0161138b565b9350608088013591508082111561155b57600080fd5b5061156888828901611402565b9150509295509295909350565b600080600080600060a0868803121561158d57600080fd5b6115968661136f565b94506115a46020870161136f565b93506040860135925060608601359150608086013567ffffffffffffffff8111156115ce57600080fd5b61156888828901611402565b600080604083850312156115ed57600080fd5b6115f68361136f565b91506020830135801515811461160b57600080fd5b809150509250929050565b6000806040838503121561162957600080fd5b6116328361136f565b9150602083013567ffffffffffffffff81111561164e57600080fd5b61165a85828601611402565b9150509250929050565b6000806040838503121561167757600080fd5b6116808361136f565b946020939093013593505050565b600080604083850312156116a157600080fd5b823567ffffffffffffffff808211156116b957600080fd5b818501915085601f8301126116cd57600080fd5b813560206116da82611a64565b6040516116e78282611adb565b8381528281019150858301600585901b870184018b101561170757600080fd5b600096505b848710156117315761171d8161136f565b83526001969096019591830191830161170c565b509650508601359250508082111561174857600080fd5b5061165a8582860161138b565b60006020828403121561176757600080fd5b813561149181611c0b565b60006020828403121561178457600080fd5b815161149181611c0b565b6000602082840312156117a157600080fd5b5035919050565b600080604083850312156117bb57600080fd5b82359150602083013567ffffffffffffffff81111561164e57600080fd5b600081518084526020808501945080840160005b83811015611809578151875295820195908201906001016117ed565b509495945050505050565b6000815180845260005b8181101561183a5760208185018101518683018201520161181e565b8181111561184c576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0386811682528516602082015260a06040820181905260009061188d908301866117d9565b828103606084015261189f81866117d9565b905082810360808401526118b38185611814565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906118f990830184611814565b979650505050505050565b60208152600061149160208301846117d9565b60408152600061192a60408301856117d9565b828103602084015261193c81856117d9565b95945050505050565b6020815260006114916020830184611814565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff821115611a7e57611a7e611b4f565b5060051b60200190565b60008219821115611a9b57611a9b611b23565b500190565b600181811c90821680611ab457607f821691505b60208210811415611ad557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715611b0157611b01611b4f565b6040525050565b6000600019821415611b1c57611b1c611b23565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115611b7e5760046000803e5060005160e01c5b90565b600060443d1015611b8f5790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611bbf57505050505090565b8285019150815181811115611bd75750505050505090565b843d8701016020828501011115611bf15750505050505090565b611c0060208286010187611adb565b509095945050505050565b6001600160e01b0319811681146106e057600080fdfea2646970667358221220e06f908f80962a6ea68febe3f7783f0cf427fe556c15589344b47bf3999ddd2e64736f6c63430008070033

Deployed Bytecode Sourcemap

660:1373:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2130:228:2;;;;;;:::i;:::-;;:::i;:::-;;;17454:25:10;;;17442:2;17427:18;2130:228:2;;;;;;;;1635:160:4;;;;;;:::i;:::-;;:::i;:::-;;1181:305:2;;;;;;:::i;:::-;;:::i;:::-;;;10246:14:10;;10239:22;10221:41;;10209:2;10194:18;1181:305:2;10081:187:10;720:18:4;;;:::i;:::-;;;;;;;:::i;1929:101::-;;;;;;:::i;:::-;;:::i;4005:430:2:-;;;;;;:::i;:::-;;:::i;1369:260:4:-;;;;;;:::i;:::-;;:::i;2515:508:2:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1104:259:4:-;;;;;;:::i;:::-;;:::i;1661:101:9:-;;;:::i;1801:122:4:-;;;;;;:::i;:::-;;:::i;1029:85:9:-;1101:6;;1029:85;;-1:-1:-1;;;;;1101:6:9;;;7887:51:10;;7875:2;7860:18;1029:85:9;7741:203:10;743:20:4;;;:::i;3091:153:2:-;;;;;;:::i;:::-;;:::i;768:39:4:-;;;;;;:::i;:::-;;:::i;3311:166:2:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3433:27:2;;;3410:4;3433:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;3311:166;3544:389;;;;;;:::i;:::-;;:::i;1911:198:9:-;;;;;;:::i;:::-;;:::i;2130:228:2:-;2216:7;-1:-1:-1;;;;;2243:21:2;;2235:77;;;;-1:-1:-1;;;2235:77:2;;11529:2:10;2235:77:2;;;11511:21:10;11568:2;11548:18;;;11541:30;11607:34;11587:18;;;11580:62;-1:-1:-1;;;11658:18:10;;;11651:41;11709:19;;2235:77:2;;;;;;;;;-1:-1:-1;2329:9:2;:13;;;;;;;;;;;-1:-1:-1;;;;;2329:22:2;;;;;;;;;;;;2130:228::o;1635:160:4:-;1101:6:9;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;1714:29:4::1;1720:3;1725:6;;1734:1;1725:10;;;;:::i;:::-;1737:1;1714:29;;;;;;;;;;;::::0;:5:::1;:29::i;:::-;1750:24;1757:6;;1766:1;1757:10;;;;:::i;:::-;1769:4;1750:6;:24::i;:::-;1781:6;:8:::0;;;:6:::1;:8;::::0;::::1;:::i;:::-;;;;;;1635:160:::0;;:::o;1181:305:2:-;1283:4;-1:-1:-1;;;;;;1318:41:2;;-1:-1:-1;;;1318:41:2;;:109;;-1:-1:-1;;;;;;;1375:52:2;;-1:-1:-1;;;1375:52:2;1318:109;:161;;;-1:-1:-1;;;;;;;;;;937:40:3;;;1443:36:2;1299:180;1181:305;-1:-1:-1;;1181:305:2:o;720:18:4:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1929:101::-;2011:13;;;;:8;:13;;;;;2004:20;;1982:13;;2011;2004:20;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1929:101;;;:::o;4005:430:2:-;-1:-1:-1;;;;;4230:20:2;;719:10:1;4230:20:2;;:60;;-1:-1:-1;4254:36:2;4271:4;719:10:1;3311:166:2;:::i;4254:36::-;4209:157;;;;-1:-1:-1;;;4209:157:2;;13164:2:10;4209:157:2;;;13146:21:10;13203:2;13183:18;;;13176:30;13242:34;13222:18;;;13215:62;-1:-1:-1;;;13293:18:10;;;13286:48;13351:19;;4209:157:2;12962:414:10;4209:157:2;4376:52;4399:4;4405:2;4409:3;4414:7;4423:4;4376:22;:52::i;:::-;4005:430;;;;;:::o;1369:260:4:-;1101:6:9;;-1:-1:-1;;;;;1101:6:9;1420:10:4;:21;1417:180;;1460:10;-1:-1:-1;;;;;1460:17:4;;;1452:64;;;;-1:-1:-1;;;1452:64:4;;17107:2:10;1452:64:4;;;17089:21:10;17146:2;17126:18;;;17119:30;17185:34;17165:18;;;17158:62;-1:-1:-1;;;17236:18:10;;;17229:32;17278:19;;1452:64:4;16905:398:10;1452:64:4;1553:1;1533:17;1543:3;1548:1;1533:9;:17::i;:::-;:21;1525:64;;;;-1:-1:-1;;;1525:64:4;;14758:2:10;1525:64:4;;;14740:21:10;14797:2;14777:18;;;14770:30;14836:32;14816:18;;;14809:60;14886:18;;1525:64:4;14556:354:10;1525:64:4;1603:20;1609:3;1614:1;1617;1603:20;;;;;;;;;;;;:5;:20::i;:::-;1369:260;:::o;2515:508:2:-;2666:16;2725:3;:10;2706:8;:15;:29;2698:83;;;;-1:-1:-1;;;2698:83:2;;15886:2:10;2698:83:2;;;15868:21:10;15925:2;15905:18;;;15898:30;15964:34;15944:18;;;15937:62;-1:-1:-1;;;16015:18:10;;;16008:39;16064:19;;2698:83:2;15684:405:10;2698:83:2;2792:30;2839:8;:15;2825:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2825:30:2;;2792:63;;2871:9;2866:120;2890:8;:15;2886:1;:19;2866:120;;;2945:30;2955:8;2964:1;2955:11;;;;;;;;:::i;:::-;;;;;;;2968:3;2972:1;2968:6;;;;;;;;:::i;:::-;;;;;;;2945:9;:30::i;:::-;2926:13;2940:1;2926:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;2907:3;;;:::i;:::-;;;2866:120;;;-1:-1:-1;3003:13:2;2515:508;-1:-1:-1;;;2515:508:2:o;1104:259:4:-;1101:6:9;;-1:-1:-1;;;;;1101:6:9;1154:10:4;:21;1151:180;;1194:10;-1:-1:-1;;;;;1194:17:4;;;1186:64;;;;-1:-1:-1;;;1186:64:4;;13994:2:10;1186:64:4;;;13976:21:10;14033:2;14013:18;;;14006:30;14072:34;14052:18;;;14045:62;-1:-1:-1;;;14123:18:10;;;14116:32;14165:19;;1186:64:4;13792:398:10;1186:64:4;1287:1;1267:17;1277:3;1282:1;1267:9;:17::i;:::-;:21;1259:64;;;;-1:-1:-1;;;1259:64:4;;15117:2:10;1259:64:4;;;15099:21:10;15156:2;15136:18;;;15129:30;15195:32;15175:18;;;15168:60;15245:18;;1259:64:4;14915:354:10;1259:64:4;1337:20;1343:3;1348:1;1351;1337:20;;;;;;;;;;;;:5;:20::i;1661:101:9:-;1101:6;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;1801:122:4:-;1101:6:9;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;1871:13:4::1;::::0;;;:8:::1;:13;::::0;;;;;;;:20;;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;;1913:3;1903:14;1907:4;1903:14;;;;;;:::i;:::-;;;;;;;;1801:122:::0;;:::o;743:20::-;;;;;;;:::i;3091:153:2:-;3185:52;719:10:1;3218:8:2;3228;3185:18;:52::i;:::-;3091:153;;:::o;768:39:4:-;;;;;;;;;;;;;;;;:::i;3544:389:2:-;-1:-1:-1;;;;;3744:20:2;;719:10:1;3744:20:2;;:60;;-1:-1:-1;3768:36:2;3785:4;719:10:1;3311:166:2;:::i;3768:36::-;3723:148;;;;-1:-1:-1;;;3723:148:2;;12348:2:10;3723:148:2;;;12330:21:10;12387:2;12367:18;;;12360:30;12426:34;12406:18;;;12399:62;-1:-1:-1;;;12477:18:10;;;12470:39;12526:19;;3723:148:2;12146:405:10;3723:148:2;3881:45;3899:4;3905:2;3909;3913:6;3921:4;3881:17;:45::i;1911:198:9:-;1101:6;;-1:-1:-1;;;;;1101:6:9;719:10:1;1241:23:9;1233:68;;;;-1:-1:-1;;;1233:68:9;;;;;;;:::i;:::-;-1:-1:-1;;;;;1999:22:9;::::1;1991:73;;;::::0;-1:-1:-1;;;1991:73:9;;11941:2:10;1991:73:9::1;::::0;::::1;11923:21:10::0;11980:2;11960:18;;;11953:30;12019:34;11999:18;;;11992:62;-1:-1:-1;;;12070:18:10;;;12063:36;12116:19;;1991:73:9::1;11739:402:10::0;1991:73:9::1;2074:28;2093:8;2074:18;:28::i;8575:709:2:-:0;-1:-1:-1;;;;;8722:16:2;;8714:62;;;;-1:-1:-1;;;8714:62:2;;16705:2:10;8714:62:2;;;16687:21:10;16744:2;16724:18;;;16717:30;16783:34;16763:18;;;16756:62;-1:-1:-1;;;16834:18:10;;;16827:31;16875:19;;8714:62:2;16503:397:10;8714:62:2;719:10:1;8787:16:2;8851:21;8869:2;8851:17;:21::i;:::-;8828:44;;8882:24;8909:25;8927:6;8909:17;:25::i;:::-;8882:52;;9022:9;:13;;;;;;;;;;;-1:-1:-1;;;;;9022:17:2;;;;;;;;;:27;;9043:6;;9022:9;:27;;9043:6;;9022:27;:::i;:::-;;;;-1:-1:-1;;9064:52:2;;;17664:25:10;;;17720:2;17705:18;;17698:34;;;-1:-1:-1;;;;;9064:52:2;;;;9097:1;;9064:52;;;;;;17637:18:10;9064:52:2;;;;;;;9203:74;9234:8;9252:1;9256:2;9260;9264:6;9272:4;9203:30;:74::i;:::-;8704:580;;;8575:709;;;;:::o;6178:1115::-;6398:7;:14;6384:3;:10;:28;6376:81;;;;-1:-1:-1;;;6376:81:2;;16296:2:10;6376:81:2;;;16278:21:10;16335:2;16315:18;;;16308:30;16374:34;16354:18;;;16347:62;-1:-1:-1;;;16425:18:10;;;16418:38;16473:19;;6376:81:2;16094:404:10;6376:81:2;-1:-1:-1;;;;;6475:16:2;;6467:66;;;;-1:-1:-1;;;6467:66:2;;;;;;;:::i;:::-;719:10:1;6544:16:2;6657:411;6681:3;:10;6677:1;:14;6657:411;;;6712:10;6725:3;6729:1;6725:6;;;;;;;;:::i;:::-;;;;;;;6712:19;;6745:14;6762:7;6770:1;6762:10;;;;;;;;:::i;:::-;;;;;;;;;;;;6787:19;6809:13;;;;;;;;;;-1:-1:-1;;;;;6809:19:2;;;;;;;;;;;;6762:10;;-1:-1:-1;6850:21:2;;;;6842:76;;;;-1:-1:-1;;;6842:76:2;;;;;;;:::i;:::-;6960:9;:13;;;;;;;;;;;-1:-1:-1;;;;;6960:19:2;;;;;;;;;;6982:20;;;6960:42;;7030:17;;;;;;;:27;;6982:20;;6960:9;7030:27;;6982:20;;7030:27;:::i;:::-;;;;;;;;6698:370;;;6693:3;;;;:::i;:::-;;;6657:411;;;;7113:2;-1:-1:-1;;;;;7083:47:2;7107:4;-1:-1:-1;;;;;7083:47:2;7097:8;-1:-1:-1;;;;;7083:47:2;;7117:3;7122:7;7083:47;;;;;;;:::i;:::-;;;;;;;;7211:75;7247:8;7257:4;7263:2;7267:3;7272:7;7281:4;7211:35;:75::i;:::-;6366:927;6178:1115;;;;;:::o;2263:187:9:-;2355:6;;;-1:-1:-1;;;;;2371:17:9;;;-1:-1:-1;;;;;;2371:17:9;;;;;;;2403:40;;2355:6;;;2371:17;2355:6;;2403:40;;2336:16;;2403:40;2326:124;2263:187;:::o;12718:323:2:-;12868:8;-1:-1:-1;;;;;12859:17:2;:5;-1:-1:-1;;;;;12859:17:2;;;12851:71;;;;-1:-1:-1;;;12851:71:2;;15476:2:10;12851:71:2;;;15458:21:10;15515:2;15495:18;;;15488:30;15554:34;15534:18;;;15527:62;-1:-1:-1;;;15605:18:10;;;15598:39;15654:19;;12851:71:2;15274:405:10;12851:71:2;-1:-1:-1;;;;;12932:25:2;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;12932:46:2;;;;;;;;;;12993:41;;10221::10;;;12993::2;;10194:18:10;12993:41:2;;;;;;;12718:323;;;:::o;4885:947::-;-1:-1:-1;;;;;5066:16:2;;5058:66;;;;-1:-1:-1;;;5058:66:2;;;;;;;:::i;:::-;719:10:1;5135:16:2;5199:21;5217:2;5199:17;:21::i;:::-;5176:44;;5230:24;5257:25;5275:6;5257:17;:25::i;:::-;5230:52;;5364:19;5386:13;;;;;;;;;;;-1:-1:-1;;;;;5386:19:2;;;;;;;;;;5423:21;;;;5415:76;;;;-1:-1:-1;;;5415:76:2;;;;;;;:::i;:::-;5525:9;:13;;;;;;;;;;;-1:-1:-1;;;;;5525:19:2;;;;;;;;;;5547:20;;;5525:42;;5587:17;;;;;;;:27;;5547:20;;5525:9;5587:27;;5547:20;;5587:27;:::i;:::-;;;;-1:-1:-1;;5630:46:2;;;17664:25:10;;;17720:2;17705:18;;17698:34;;;-1:-1:-1;;;;;5630:46:2;;;;;;;;;;;;;;17637:18:10;5630:46:2;;;;;;;5757:68;5788:8;5798:4;5804:2;5808;5812:6;5820:4;5757:30;:68::i;:::-;5048:784;;;;4885:947;;;;;:::o;16870:193::-;16989:16;;;17003:1;16989:16;;;;;;;;;16936;;16964:22;;16989:16;;;;;;;;;;;;-1:-1:-1;16989:16:2;16964:41;;17026:7;17015:5;17021:1;17015:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;17051:5;16870:193;-1:-1:-1;;16870:193:2:o;15341:725::-;-1:-1:-1;;;;;15548:13:2;;1465:19:0;:23;15544:516:2;;15583:72;;-1:-1:-1;;;15583:72:2;;-1:-1:-1;;;;;15583:38:2;;;;;:72;;15622:8;;15632:4;;15638:2;;15642:6;;15650:4;;15583:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15583:72:2;;;;;;;;-1:-1:-1;;15583:72:2;;;;;;;;;;;;:::i;:::-;;;15579:471;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;15926:6;15919:14;;-1:-1:-1;;;15919:14:2;;;;;;;;:::i;15579:471::-;;;15973:62;;-1:-1:-1;;;15973:62:2;;10699:2:10;15973:62:2;;;10681:21:10;10738:2;10718:18;;;10711:30;10777:34;10757:18;;;10750:62;-1:-1:-1;;;10828:18:10;;;10821:50;10888:19;;15973:62:2;10497:416:10;15579:471:2;-1:-1:-1;;;;;;15704:55:2;;-1:-1:-1;;;15704:55:2;15700:152;;15783:50;;-1:-1:-1;;;15783:50:2;;;;;;;:::i;16072:792::-;-1:-1:-1;;;;;16304:13:2;;1465:19:0;:23;16300:558:2;;16339:79;;-1:-1:-1;;;16339:79:2;;-1:-1:-1;;;;;16339:43:2;;;;;:79;;16383:8;;16393:4;;16399:3;;16404:7;;16413:4;;16339:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16339:79:2;;;;;;;;-1:-1:-1;;16339:79:2;;;;;;;;;;;;:::i;:::-;;;16335:513;;;;:::i;:::-;-1:-1:-1;;;;;;16497:60:2;;-1:-1:-1;;;16497:60:2;16493:157;;16581:50;;-1:-1:-1;;;16581:50:2;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:10;82:20;;-1:-1:-1;;;;;131:31:10;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:735::-;246:5;299:3;292:4;284:6;280:17;276:27;266:55;;317:1;314;307:12;266:55;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:10;;;671:1;667:10;;;655:23;;651:32;;648:41;-1:-1:-1;645:61:10;;;702:1;699;692:12;645:61;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:10;;192:735;-1:-1:-1;;;;;;;192:735:10:o;932:555::-;974:5;1027:3;1020:4;1012:6;1008:17;1004:27;994:55;;1045:1;1042;1035:12;994:55;1081:6;1068:20;1107:18;1103:2;1100:26;1097:52;;;1129:18;;:::i;:::-;1178:2;1172:9;1190:67;1245:2;1226:13;;-1:-1:-1;;1222:27:10;1251:4;1218:38;1172:9;1190:67;:::i;:::-;1281:2;1273:6;1266:18;1327:3;1320:4;1315:2;1307:6;1303:15;1299:26;1296:35;1293:55;;;1344:1;1341;1334:12;1293:55;1408:2;1401:4;1393:6;1389:17;1382:4;1374:6;1370:17;1357:54;1455:1;1431:15;;;1448:4;1427:26;1420:37;;;;1435:6;932:555;-1:-1:-1;;;932:555:10:o;1492:186::-;1551:6;1604:2;1592:9;1583:7;1579:23;1575:32;1572:52;;;1620:1;1617;1610:12;1572:52;1643:29;1662:9;1643:29;:::i;:::-;1633:39;1492:186;-1:-1:-1;;;1492:186:10:o;1683:260::-;1751:6;1759;1812:2;1800:9;1791:7;1787:23;1783:32;1780:52;;;1828:1;1825;1818:12;1780:52;1851:29;1870:9;1851:29;:::i;:::-;1841:39;;1899:38;1933:2;1922:9;1918:18;1899:38;:::i;:::-;1889:48;;1683:260;;;;;:::o;1948:943::-;2102:6;2110;2118;2126;2134;2187:3;2175:9;2166:7;2162:23;2158:33;2155:53;;;2204:1;2201;2194:12;2155:53;2227:29;2246:9;2227:29;:::i;:::-;2217:39;;2275:38;2309:2;2298:9;2294:18;2275:38;:::i;:::-;2265:48;;2364:2;2353:9;2349:18;2336:32;2387:18;2428:2;2420:6;2417:14;2414:34;;;2444:1;2441;2434:12;2414:34;2467:61;2520:7;2511:6;2500:9;2496:22;2467:61;:::i;:::-;2457:71;;2581:2;2570:9;2566:18;2553:32;2537:48;;2610:2;2600:8;2597:16;2594:36;;;2626:1;2623;2616:12;2594:36;2649:63;2704:7;2693:8;2682:9;2678:24;2649:63;:::i;:::-;2639:73;;2765:3;2754:9;2750:19;2737:33;2721:49;;2795:2;2785:8;2782:16;2779:36;;;2811:1;2808;2801:12;2779:36;;2834:51;2877:7;2866:8;2855:9;2851:24;2834:51;:::i;:::-;2824:61;;;1948:943;;;;;;;;:::o;2896:606::-;3000:6;3008;3016;3024;3032;3085:3;3073:9;3064:7;3060:23;3056:33;3053:53;;;3102:1;3099;3092:12;3053:53;3125:29;3144:9;3125:29;:::i;:::-;3115:39;;3173:38;3207:2;3196:9;3192:18;3173:38;:::i;:::-;3163:48;;3258:2;3247:9;3243:18;3230:32;3220:42;;3309:2;3298:9;3294:18;3281:32;3271:42;;3364:3;3353:9;3349:19;3336:33;3392:18;3384:6;3381:30;3378:50;;;3424:1;3421;3414:12;3378:50;3447:49;3488:7;3479:6;3468:9;3464:22;3447:49;:::i;3507:347::-;3572:6;3580;3633:2;3621:9;3612:7;3608:23;3604:32;3601:52;;;3649:1;3646;3639:12;3601:52;3672:29;3691:9;3672:29;:::i;:::-;3662:39;;3751:2;3740:9;3736:18;3723:32;3798:5;3791:13;3784:21;3777:5;3774:32;3764:60;;3820:1;3817;3810:12;3764:60;3843:5;3833:15;;;3507:347;;;;;:::o;3859:395::-;3937:6;3945;3998:2;3986:9;3977:7;3973:23;3969:32;3966:52;;;4014:1;4011;4004:12;3966:52;4037:29;4056:9;4037:29;:::i;:::-;4027:39;;4117:2;4106:9;4102:18;4089:32;4144:18;4136:6;4133:30;4130:50;;;4176:1;4173;4166:12;4130:50;4199:49;4240:7;4231:6;4220:9;4216:22;4199:49;:::i;:::-;4189:59;;;3859:395;;;;;:::o;4259:254::-;4327:6;4335;4388:2;4376:9;4367:7;4363:23;4359:32;4356:52;;;4404:1;4401;4394:12;4356:52;4427:29;4446:9;4427:29;:::i;:::-;4417:39;4503:2;4488:18;;;;4475:32;;-1:-1:-1;;;4259:254:10:o;4518:1219::-;4636:6;4644;4697:2;4685:9;4676:7;4672:23;4668:32;4665:52;;;4713:1;4710;4703:12;4665:52;4753:9;4740:23;4782:18;4823:2;4815:6;4812:14;4809:34;;;4839:1;4836;4829:12;4809:34;4877:6;4866:9;4862:22;4852:32;;4922:7;4915:4;4911:2;4907:13;4903:27;4893:55;;4944:1;4941;4934:12;4893:55;4980:2;4967:16;5002:4;5025:43;5065:2;5025:43;:::i;:::-;5097:2;5091:9;5109:31;5137:2;5129:6;5109:31;:::i;:::-;5175:18;;;5209:15;;;;-1:-1:-1;5244:11:10;;;5286:1;5282:10;;;5274:19;;5270:28;;5267:41;-1:-1:-1;5264:61:10;;;5321:1;5318;5311:12;5264:61;5343:1;5334:10;;5353:169;5367:2;5364:1;5361:9;5353:169;;;5424:23;5443:3;5424:23;:::i;:::-;5412:36;;5385:1;5378:9;;;;;5468:12;;;;5500;;5353:169;;;-1:-1:-1;5541:6:10;-1:-1:-1;;5585:18:10;;5572:32;;-1:-1:-1;;5616:16:10;;;5613:36;;;5645:1;5642;5635:12;5613:36;;5668:63;5723:7;5712:8;5701:9;5697:24;5668:63;:::i;5742:245::-;5800:6;5853:2;5841:9;5832:7;5828:23;5824:32;5821:52;;;5869:1;5866;5859:12;5821:52;5908:9;5895:23;5927:30;5951:5;5927:30;:::i;5992:249::-;6061:6;6114:2;6102:9;6093:7;6089:23;6085:32;6082:52;;;6130:1;6127;6120:12;6082:52;6162:9;6156:16;6181:30;6205:5;6181:30;:::i;6246:180::-;6305:6;6358:2;6346:9;6337:7;6333:23;6329:32;6326:52;;;6374:1;6371;6364:12;6326:52;-1:-1:-1;6397:23:10;;6246:180;-1:-1:-1;6246:180:10:o;6431:389::-;6509:6;6517;6570:2;6558:9;6549:7;6545:23;6541:32;6538:52;;;6586:1;6583;6576:12;6538:52;6622:9;6609:23;6599:33;;6683:2;6672:9;6668:18;6655:32;6710:18;6702:6;6699:30;6696:50;;;6742:1;6739;6732:12;6825:435;6878:3;6916:5;6910:12;6943:6;6938:3;6931:19;6969:4;6998:2;6993:3;6989:12;6982:19;;7035:2;7028:5;7024:14;7056:1;7066:169;7080:6;7077:1;7074:13;7066:169;;;7141:13;;7129:26;;7175:12;;;;7210:15;;;;7102:1;7095:9;7066:169;;;-1:-1:-1;7251:3:10;;6825:435;-1:-1:-1;;;;;6825:435:10:o;7265:471::-;7306:3;7344:5;7338:12;7371:6;7366:3;7359:19;7396:1;7406:162;7420:6;7417:1;7414:13;7406:162;;;7482:4;7538:13;;;7534:22;;7528:29;7510:11;;;7506:20;;7499:59;7435:12;7406:162;;;7586:6;7583:1;7580:13;7577:87;;;7652:1;7645:4;7636:6;7631:3;7627:16;7623:27;7616:38;7577:87;-1:-1:-1;7718:2:10;7697:15;-1:-1:-1;;7693:29:10;7684:39;;;;7725:4;7680:50;;7265:471;-1:-1:-1;;7265:471:10:o;7949:826::-;-1:-1:-1;;;;;8346:15:10;;;8328:34;;8398:15;;8393:2;8378:18;;8371:43;8308:3;8445:2;8430:18;;8423:31;;;8271:4;;8477:57;;8514:19;;8506:6;8477:57;:::i;:::-;8582:9;8574:6;8570:22;8565:2;8554:9;8550:18;8543:50;8616:44;8653:6;8645;8616:44;:::i;:::-;8602:58;;8709:9;8701:6;8697:22;8691:3;8680:9;8676:19;8669:51;8737:32;8762:6;8754;8737:32;:::i;:::-;8729:40;7949:826;-1:-1:-1;;;;;;;;7949:826:10:o;8780:560::-;-1:-1:-1;;;;;9077:15:10;;;9059:34;;9129:15;;9124:2;9109:18;;9102:43;9176:2;9161:18;;9154:34;;;9219:2;9204:18;;9197:34;;;9039:3;9262;9247:19;;9240:32;;;9002:4;;9289:45;;9314:19;;9306:6;9289:45;:::i;:::-;9281:53;8780:560;-1:-1:-1;;;;;;;8780:560:10:o;9345:261::-;9524:2;9513:9;9506:21;9487:4;9544:56;9596:2;9585:9;9581:18;9573:6;9544:56;:::i;9611:465::-;9868:2;9857:9;9850:21;9831:4;9894:56;9946:2;9935:9;9931:18;9923:6;9894:56;:::i;:::-;9998:9;9990:6;9986:22;9981:2;9970:9;9966:18;9959:50;10026:44;10063:6;10055;10026:44;:::i;:::-;10018:52;9611:465;-1:-1:-1;;;;;9611:465:10:o;10273:219::-;10422:2;10411:9;10404:21;10385:4;10442:44;10482:2;10471:9;10467:18;10459:6;10442:44;:::i;10918:404::-;11120:2;11102:21;;;11159:2;11139:18;;;11132:30;11198:34;11193:2;11178:18;;11171:62;-1:-1:-1;;;11264:2:10;11249:18;;11242:38;11312:3;11297:19;;10918:404::o;12556:401::-;12758:2;12740:21;;;12797:2;12777:18;;;12770:30;12836:34;12831:2;12816:18;;12809:62;-1:-1:-1;;;12902:2:10;12887:18;;12880:35;12947:3;12932:19;;12556:401::o;13381:406::-;13583:2;13565:21;;;13622:2;13602:18;;;13595:30;13661:34;13656:2;13641:18;;13634:62;-1:-1:-1;;;13727:2:10;13712:18;;13705:40;13777:3;13762:19;;13381:406::o;14195:356::-;14397:2;14379:21;;;14416:18;;;14409:30;14475:34;14470:2;14455:18;;14448:62;14542:2;14527:18;;14195:356::o;17743:183::-;17803:4;17836:18;17828:6;17825:30;17822:56;;;17858:18;;:::i;:::-;-1:-1:-1;17903:1:10;17899:14;17915:4;17895:25;;17743:183::o;17931:128::-;17971:3;18002:1;17998:6;17995:1;17992:13;17989:39;;;18008:18;;:::i;:::-;-1:-1:-1;18044:9:10;;17931:128::o;18064:380::-;18143:1;18139:12;;;;18186;;;18207:61;;18261:4;18253:6;18249:17;18239:27;;18207:61;18314:2;18306:6;18303:14;18283:18;18280:38;18277:161;;;18360:10;18355:3;18351:20;18348:1;18341:31;18395:4;18392:1;18385:15;18423:4;18420:1;18413:15;18277:161;;18064:380;;;:::o;18449:249::-;18559:2;18540:13;;-1:-1:-1;;18536:27:10;18524:40;;18594:18;18579:34;;18615:22;;;18576:62;18573:88;;;18641:18;;:::i;:::-;18677:2;18670:22;-1:-1:-1;;18449:249:10:o;18703:135::-;18742:3;-1:-1:-1;;18763:17:10;;18760:43;;;18783:18;;:::i;:::-;-1:-1:-1;18830:1:10;18819:13;;18703:135::o;18843:127::-;18904:10;18899:3;18895:20;18892:1;18885:31;18935:4;18932:1;18925:15;18959:4;18956:1;18949:15;18975:127;19036:10;19031:3;19027:20;19024:1;19017:31;19067:4;19064:1;19057:15;19091:4;19088:1;19081:15;19107:127;19168:10;19163:3;19159:20;19156:1;19149:31;19199:4;19196:1;19189:15;19223:4;19220:1;19213:15;19239:179;19274:3;19316:1;19298:16;19295:23;19292:120;;;19362:1;19359;19356;19341:23;-1:-1:-1;19399:1:10;19393:8;19388:3;19384:18;19292:120;19239:179;:::o;19423:671::-;19462:3;19504:4;19486:16;19483:26;19480:39;;;19423:671;:::o;19480:39::-;19546:2;19540:9;-1:-1:-1;;19611:16:10;19607:25;;19604:1;19540:9;19583:50;19662:4;19656:11;19686:16;19721:18;19792:2;19785:4;19777:6;19773:17;19770:25;19765:2;19757:6;19754:14;19751:45;19748:58;;;19799:5;;;;;19423:671;:::o;19748:58::-;19836:6;19830:4;19826:17;19815:28;;19872:3;19866:10;19899:2;19891:6;19888:14;19885:27;;;19905:5;;;;;;19423:671;:::o;19885:27::-;19989:2;19970:16;19964:4;19960:27;19956:36;19949:4;19940:6;19935:3;19931:16;19927:27;19924:69;19921:82;;;19996:5;;;;;;19423:671;:::o;19921:82::-;20012:57;20063:4;20054:6;20046;20042:19;20038:30;20032:4;20012:57;:::i;:::-;-1:-1:-1;20085:3:10;;19423:671;-1:-1:-1;;;;;19423:671:10:o;20099:131::-;-1:-1:-1;;;;;;20173:32:10;;20163:43;;20153:71;;20220:1;20217;20210:12

Swarm Source

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