ETH Price: $3,478.04 (+1.60%)
Gas: 12 Gwei

Token

DANKBOTS SPECIAL EDITIONS (DBSE)
 

Overview

Max Total Supply

100 DBSE

Holders

95

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xbb0173c0e8d5919e0a6a4066a1c506b16748e2d1
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:
DankbotsSE

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-25
*/

// SPDX-License-Identifier: MIT

/**
 ____              _    _           _       ____  _____ 
|  _ \  __ _ _ __ | | _| |__   ___ | |_ ___/ ___|| ____|
| | | |/ _` | '_ \| |/ / '_ \ / _ \| __/ __\___ \|  _|  
| |_| | (_| | | | |   <| |_) | (_) | |_\__ \___) | |___ 
|____/ \__,_|_| |_|_|\_\_.__/ \___/ \__|___/____/|_____|

*/


pragma solidity ^0.8.0;
/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` fo
r some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */


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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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);
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC1155/IERC1155Receiver.sol



pragma solidity ^0.8.0;


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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC1155/IERC1155.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol



pragma solidity ^0.8.0;


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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC1155/ERC1155.sol



pragma solidity ^0.8.0;







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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _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();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `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();

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

contract DankbotsSE is ERC1155, Ownable {
    
	uint256 public LAST = 0;

	string public name = "DANKBOTS SPECIAL EDITIONS";
	string public symbol = "DBSE";

	mapping( uint => string ) public tokenURI;

	constructor() ERC1155("") {
	}

	function setTokenURI( uint _id, string memory _uri ) 
	external 
	onlyOwner {
		require( _id >= 0 && _id < LAST, "Invalid token id" );
		tokenURI[_id] = _uri;
		emit URI( _uri, _id );
	}

	function createSE( string memory _uri ) 
	external 
	onlyOwner {
		tokenURI[ LAST ] = _uri;
		emit URI( _uri, LAST );
		LAST += 1;
	}

	function uri( uint _id ) 
	public 
	override
	view 
	returns ( string memory ) {
		require( _id >= 0 && _id < LAST, "Invalid token id" );
		return tokenURI[ _id ];
	}

	function mint(address _to, uint _id, uint _amount) 
	external 
	onlyOwner {
		require( _id >= 0 && _id < LAST, "Invalid token id" );
		_mint( _to, _id, _amount, "" );
	}
}

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":[],"name":"LAST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"createSE","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"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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"}]

600060045560c0604052601960808190527f44414e4b424f5453205350454349414c2045444954494f4e530000000000000060a090815262000045916005919062000119565b50604080518082019091526004808252634442534560e01b6020909201918252620000739160069162000119565b503480156200008157600080fd5b506040805160208101909152600081526200009c81620000ae565b50620000a833620000c7565b620001fc565b8051620000c390600290602084019062000119565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012790620001bf565b90600052602060002090601f0160209004810192826200014b576000855562000196565b82601f106200016657805160ff191683800117855562000196565b8280016001018555821562000196579182015b828111156200019657825182559160200191906001019062000179565b50620001a4929150620001a8565b5090565b5b80821115620001a45760008155600101620001a9565b600181811c90821680620001d457607f821691505b60208210811415620001f657634e487b7160e01b600052602260045260246000fd5b50919050565b611bad806200020c6000396000f3fe608060405234801561001057600080fd5b50600436106101155760003560e01c8063715018a6116100a2578063bf70d34f11610071578063bf70d34f14610237578063c87b56dd14610240578063e985e9c514610253578063f242432a1461028f578063f2fde38b146102a257600080fd5b8063715018a6146101f95780638da5cb5b1461020157806395d89b411461021c578063a22cb4651461022457600080fd5b80631386a57e116100e95780631386a57e1461018b578063156e29f6146101a0578063162094c4146101b35780632eb2c2d6146101c65780634e1273f4146101d957600080fd5b8062fdd58e1461011a57806301ffc9a71461014057806306fdde03146101635780630e89341c14610178575b600080fd5b61012d610128366004611536565b6102b5565b6040519081526020015b60405180910390f35b61015361014e36600461165c565b61034c565b6040519015158152602001610137565b61016b61039e565b604051610137919061188b565b61016b6101863660046116cf565b61042c565b61019e610199366004611694565b6104ed565b005b61019e6101ae36600461155f565b61058f565b61019e6101c13660046116e7565b6105fa565b61019e6101d43660046113f3565b6106a1565b6101ec6101e7366004611591565b610738565b604051610137919061184a565b61019e61089a565b6003546040516001600160a01b039091168152602001610137565b61016b6108d0565b61019e6102323660046114fc565b6108dd565b61012d60045481565b61016b61024e3660046116cf565b6108ec565b6101536102613660046113c1565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61019e61029d366004611499565b610905565b61019e6102b03660046113a0565b61098c565b60006001600160a01b0383166103265760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061037d57506001600160e01b031982166303a24d0760e21b145b8061039857506301ffc9a760e01b6001600160e01b03198316145b92915050565b600580546103ab90611a10565b80601f01602080910402602001604051908101604052809291908181526020018280546103d790611a10565b80156104245780601f106103f957610100808354040283529160200191610424565b820191906000526020600020905b81548152906001019060200180831161040757829003601f168201915b505050505081565b6060600454821061044f5760405162461bcd60e51b815260040161031d906118e6565b6000828152600760205260409020805461046890611a10565b80601f016020809104026020016040519081016040528092919081815260200182805461049490611a10565b80156104e15780601f106104b6576101008083540402835291602001916104e1565b820191906000526020600020905b8154815290600101906020018083116104c457829003601f168201915b50505050509050919050565b6003546001600160a01b031633146105175760405162461bcd60e51b815260040161031d9061199f565b6004546000908152600760209081526040909120825161053992840190611208565b506004547f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b8260405161056c919061188b565b60405180910390a260016004600082825461058791906119f8565b909155505050565b6003546001600160a01b031633146105b95760405162461bcd60e51b815260040161031d9061199f565b60045482106105da5760405162461bcd60e51b815260040161031d906118e6565b6105f583838360405180602001604052806000815250610a27565b505050565b6003546001600160a01b031633146106245760405162461bcd60e51b815260040161031d9061199f565b60045482106106455760405162461bcd60e51b815260040161031d906118e6565b6000828152600760209081526040909120825161066492840190611208565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b82604051610695919061188b565b60405180910390a25050565b6001600160a01b0385163314806106bd57506106bd8533610261565b6107245760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161031d565b6107318585858585610b31565b5050505050565b6060815183511461079d5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161031d565b6000835167ffffffffffffffff8111156107c757634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156107f0578160200160208202803683370190505b50905060005b84518110156108925761085785828151811061082257634e487b7160e01b600052603260045260246000fd5b602002602001015185838151811061084a57634e487b7160e01b600052603260045260246000fd5b60200260200101516102b5565b82828151811061087757634e487b7160e01b600052603260045260246000fd5b602090810291909101015261088b81611a78565b90506107f6565b509392505050565b6003546001600160a01b031633146108c45760405162461bcd60e51b815260040161031d9061199f565b6108ce6000610d2a565b565b600680546103ab90611a10565b6108e8338383610d7c565b5050565b600760205260009081526040902080546103ab90611a10565b6001600160a01b03851633148061092157506109218533610261565b61097f5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b606482015260840161031d565b6107318585858585610e5d565b6003546001600160a01b031633146109b65760405162461bcd60e51b815260040161031d9061199f565b6001600160a01b038116610a1b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161031d565b610a2481610d2a565b50565b6001600160a01b038416610a875760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161031d565b33610aa181600087610a9888610f7a565b61073188610f7a565b6000848152602081815260408083206001600160a01b038916845290915281208054859290610ad19084906119f8565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461073181600087878787610fd3565b8151835114610b935760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b606482015260840161031d565b6001600160a01b038416610bb95760405162461bcd60e51b815260040161031d90611910565b3360005b8451811015610cbc576000858281518110610be857634e487b7160e01b600052603260045260246000fd5b602002602001015190506000858381518110610c1457634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610c645760405162461bcd60e51b815260040161031d90611955565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610ca19084906119f8565b9250508190555050505080610cb590611a78565b9050610bbd565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610d0c92919061185d565b60405180910390a4610d2281878787878761113e565b505050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415610df05760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161031d565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038416610e835760405162461bcd60e51b815260040161031d90611910565b33610e93818787610a9888610f7a565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015610ed45760405162461bcd60e51b815260040161031d90611955565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290610f119084906119f8565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610f71828888888888610fd3565b50505050505050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110610fc257634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b6001600160a01b0384163b15610d225760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906110179089908990889088908890600401611805565b602060405180830381600087803b15801561103157600080fd5b505af1925050508015611061575060408051601f3d908101601f1916820190925261105e91810190611678565b60015b61110e5761106d611abf565b806308c379a014156110a75750611082611ad7565b8061108d57506110a9565b8060405162461bcd60e51b815260040161031d919061188b565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161031d565b6001600160e01b0319811663f23a6e6160e01b14610f715760405162461bcd60e51b815260040161031d9061189e565b6001600160a01b0384163b15610d225760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061118290899089908890889088906004016117a7565b602060405180830381600087803b15801561119c57600080fd5b505af19250505080156111cc575060408051601f3d908101601f191682019092526111c991810190611678565b60015b6111d85761106d611abf565b6001600160e01b0319811663bc197c8160e01b14610f715760405162461bcd60e51b815260040161031d9061189e565b82805461121490611a10565b90600052602060002090601f016020900481019282611236576000855561127c565b82601f1061124f57805160ff191683800117855561127c565b8280016001018555821561127c579182015b8281111561127c578251825591602001919060010190611261565b5061128892915061128c565b5090565b5b80821115611288576000815560010161128d565b80356001600160a01b03811681146112b857600080fd5b919050565b600082601f8301126112cd578081fd5b813560206112da826119d4565b6040516112e78282611a4b565b8381528281019150858301600585901b87018401881015611306578586fd5b855b8581101561132457813584529284019290840190600101611308565b5090979650505050505050565b600082601f830112611341578081fd5b813567ffffffffffffffff81111561135b5761135b611aa9565b604051611372601f8301601f191660200182611a4b565b818152846020838601011115611386578283fd5b816020850160208301379081016020019190915292915050565b6000602082840312156113b1578081fd5b6113ba826112a1565b9392505050565b600080604083850312156113d3578081fd5b6113dc836112a1565b91506113ea602084016112a1565b90509250929050565b600080600080600060a0868803121561140a578081fd5b611413866112a1565b9450611421602087016112a1565b9350604086013567ffffffffffffffff8082111561143d578283fd5b61144989838a016112bd565b9450606088013591508082111561145e578283fd5b61146a89838a016112bd565b9350608088013591508082111561147f578283fd5b5061148c88828901611331565b9150509295509295909350565b600080600080600060a086880312156114b0578081fd5b6114b9866112a1565b94506114c7602087016112a1565b93506040860135925060608601359150608086013567ffffffffffffffff8111156114f0578182fd5b61148c88828901611331565b6000806040838503121561150e578182fd5b611517836112a1565b91506020830135801515811461152b578182fd5b809150509250929050565b60008060408385031215611548578182fd5b611551836112a1565b946020939093013593505050565b600080600060608486031215611573578283fd5b61157c846112a1565b95602085013595506040909401359392505050565b600080604083850312156115a3578182fd5b823567ffffffffffffffff808211156115ba578384fd5b818501915085601f8301126115cd578384fd5b813560206115da826119d4565b6040516115e78282611a4b565b8381528281019150858301600585901b870184018b1015611606578889fd5b8896505b8487101561162f5761161b816112a1565b83526001969096019591830191830161160a565b5096505086013592505080821115611645578283fd5b50611652858286016112bd565b9150509250929050565b60006020828403121561166d578081fd5b81356113ba81611b61565b600060208284031215611689578081fd5b81516113ba81611b61565b6000602082840312156116a5578081fd5b813567ffffffffffffffff8111156116bb578182fd5b6116c784828501611331565b949350505050565b6000602082840312156116e0578081fd5b5035919050565b600080604083850312156116f9578182fd5b82359150602083013567ffffffffffffffff811115611716578182fd5b61165285828601611331565b6000815180845260208085019450808401835b8381101561175157815187529582019590820190600101611735565b509495945050505050565b60008151808452815b8181101561178157602081850181015186830182015201611765565b818111156117925782602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0386811682528516602082015260a0604082018190526000906117d390830186611722565b82810360608401526117e58186611722565b905082810360808401526117f9818561175c565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061183f9083018461175c565b979650505050505050565b6020815260006113ba6020830184611722565b6040815260006118706040830185611722565b82810360208401526118828185611722565b95945050505050565b6020815260006113ba602083018461175c565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526010908201526f125b9d985b1a59081d1bdad95b881a5960821b604082015260600190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff8211156119ee576119ee611aa9565b5060051b60200190565b60008219821115611a0b57611a0b611a93565b500190565b600181811c90821680611a2457607f821691505b60208210811415611a4557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715611a7157611a71611aa9565b6040525050565b6000600019821415611a8c57611a8c611a93565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115611ad457600481823e5160e01c5b90565b600060443d1015611ae55790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611b1557505050505090565b8285019150815181811115611b2d5750505050505090565b843d8701016020828501011115611b475750505050505090565b611b5660208286010187611a4b565b509095945050505050565b6001600160e01b031981168114610a2457600080fdfea264697066735822122039530a509f841ff05ef4eea901b717785cd875d8957157a65df6aa92557a288764736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101155760003560e01c8063715018a6116100a2578063bf70d34f11610071578063bf70d34f14610237578063c87b56dd14610240578063e985e9c514610253578063f242432a1461028f578063f2fde38b146102a257600080fd5b8063715018a6146101f95780638da5cb5b1461020157806395d89b411461021c578063a22cb4651461022457600080fd5b80631386a57e116100e95780631386a57e1461018b578063156e29f6146101a0578063162094c4146101b35780632eb2c2d6146101c65780634e1273f4146101d957600080fd5b8062fdd58e1461011a57806301ffc9a71461014057806306fdde03146101635780630e89341c14610178575b600080fd5b61012d610128366004611536565b6102b5565b6040519081526020015b60405180910390f35b61015361014e36600461165c565b61034c565b6040519015158152602001610137565b61016b61039e565b604051610137919061188b565b61016b6101863660046116cf565b61042c565b61019e610199366004611694565b6104ed565b005b61019e6101ae36600461155f565b61058f565b61019e6101c13660046116e7565b6105fa565b61019e6101d43660046113f3565b6106a1565b6101ec6101e7366004611591565b610738565b604051610137919061184a565b61019e61089a565b6003546040516001600160a01b039091168152602001610137565b61016b6108d0565b61019e6102323660046114fc565b6108dd565b61012d60045481565b61016b61024e3660046116cf565b6108ec565b6101536102613660046113c1565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61019e61029d366004611499565b610905565b61019e6102b03660046113a0565b61098c565b60006001600160a01b0383166103265760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061037d57506001600160e01b031982166303a24d0760e21b145b8061039857506301ffc9a760e01b6001600160e01b03198316145b92915050565b600580546103ab90611a10565b80601f01602080910402602001604051908101604052809291908181526020018280546103d790611a10565b80156104245780601f106103f957610100808354040283529160200191610424565b820191906000526020600020905b81548152906001019060200180831161040757829003601f168201915b505050505081565b6060600454821061044f5760405162461bcd60e51b815260040161031d906118e6565b6000828152600760205260409020805461046890611a10565b80601f016020809104026020016040519081016040528092919081815260200182805461049490611a10565b80156104e15780601f106104b6576101008083540402835291602001916104e1565b820191906000526020600020905b8154815290600101906020018083116104c457829003601f168201915b50505050509050919050565b6003546001600160a01b031633146105175760405162461bcd60e51b815260040161031d9061199f565b6004546000908152600760209081526040909120825161053992840190611208565b506004547f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b8260405161056c919061188b565b60405180910390a260016004600082825461058791906119f8565b909155505050565b6003546001600160a01b031633146105b95760405162461bcd60e51b815260040161031d9061199f565b60045482106105da5760405162461bcd60e51b815260040161031d906118e6565b6105f583838360405180602001604052806000815250610a27565b505050565b6003546001600160a01b031633146106245760405162461bcd60e51b815260040161031d9061199f565b60045482106106455760405162461bcd60e51b815260040161031d906118e6565b6000828152600760209081526040909120825161066492840190611208565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b82604051610695919061188b565b60405180910390a25050565b6001600160a01b0385163314806106bd57506106bd8533610261565b6107245760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161031d565b6107318585858585610b31565b5050505050565b6060815183511461079d5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161031d565b6000835167ffffffffffffffff8111156107c757634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156107f0578160200160208202803683370190505b50905060005b84518110156108925761085785828151811061082257634e487b7160e01b600052603260045260246000fd5b602002602001015185838151811061084a57634e487b7160e01b600052603260045260246000fd5b60200260200101516102b5565b82828151811061087757634e487b7160e01b600052603260045260246000fd5b602090810291909101015261088b81611a78565b90506107f6565b509392505050565b6003546001600160a01b031633146108c45760405162461bcd60e51b815260040161031d9061199f565b6108ce6000610d2a565b565b600680546103ab90611a10565b6108e8338383610d7c565b5050565b600760205260009081526040902080546103ab90611a10565b6001600160a01b03851633148061092157506109218533610261565b61097f5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b606482015260840161031d565b6107318585858585610e5d565b6003546001600160a01b031633146109b65760405162461bcd60e51b815260040161031d9061199f565b6001600160a01b038116610a1b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161031d565b610a2481610d2a565b50565b6001600160a01b038416610a875760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161031d565b33610aa181600087610a9888610f7a565b61073188610f7a565b6000848152602081815260408083206001600160a01b038916845290915281208054859290610ad19084906119f8565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461073181600087878787610fd3565b8151835114610b935760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b606482015260840161031d565b6001600160a01b038416610bb95760405162461bcd60e51b815260040161031d90611910565b3360005b8451811015610cbc576000858281518110610be857634e487b7160e01b600052603260045260246000fd5b602002602001015190506000858381518110610c1457634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610c645760405162461bcd60e51b815260040161031d90611955565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610ca19084906119f8565b9250508190555050505080610cb590611a78565b9050610bbd565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610d0c92919061185d565b60405180910390a4610d2281878787878761113e565b505050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415610df05760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161031d565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038416610e835760405162461bcd60e51b815260040161031d90611910565b33610e93818787610a9888610f7a565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015610ed45760405162461bcd60e51b815260040161031d90611955565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290610f119084906119f8565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610f71828888888888610fd3565b50505050505050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110610fc257634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b6001600160a01b0384163b15610d225760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906110179089908990889088908890600401611805565b602060405180830381600087803b15801561103157600080fd5b505af1925050508015611061575060408051601f3d908101601f1916820190925261105e91810190611678565b60015b61110e5761106d611abf565b806308c379a014156110a75750611082611ad7565b8061108d57506110a9565b8060405162461bcd60e51b815260040161031d919061188b565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161031d565b6001600160e01b0319811663f23a6e6160e01b14610f715760405162461bcd60e51b815260040161031d9061189e565b6001600160a01b0384163b15610d225760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061118290899089908890889088906004016117a7565b602060405180830381600087803b15801561119c57600080fd5b505af19250505080156111cc575060408051601f3d908101601f191682019092526111c991810190611678565b60015b6111d85761106d611abf565b6001600160e01b0319811663bc197c8160e01b14610f715760405162461bcd60e51b815260040161031d9061189e565b82805461121490611a10565b90600052602060002090601f016020900481019282611236576000855561127c565b82601f1061124f57805160ff191683800117855561127c565b8280016001018555821561127c579182015b8281111561127c578251825591602001919060010190611261565b5061128892915061128c565b5090565b5b80821115611288576000815560010161128d565b80356001600160a01b03811681146112b857600080fd5b919050565b600082601f8301126112cd578081fd5b813560206112da826119d4565b6040516112e78282611a4b565b8381528281019150858301600585901b87018401881015611306578586fd5b855b8581101561132457813584529284019290840190600101611308565b5090979650505050505050565b600082601f830112611341578081fd5b813567ffffffffffffffff81111561135b5761135b611aa9565b604051611372601f8301601f191660200182611a4b565b818152846020838601011115611386578283fd5b816020850160208301379081016020019190915292915050565b6000602082840312156113b1578081fd5b6113ba826112a1565b9392505050565b600080604083850312156113d3578081fd5b6113dc836112a1565b91506113ea602084016112a1565b90509250929050565b600080600080600060a0868803121561140a578081fd5b611413866112a1565b9450611421602087016112a1565b9350604086013567ffffffffffffffff8082111561143d578283fd5b61144989838a016112bd565b9450606088013591508082111561145e578283fd5b61146a89838a016112bd565b9350608088013591508082111561147f578283fd5b5061148c88828901611331565b9150509295509295909350565b600080600080600060a086880312156114b0578081fd5b6114b9866112a1565b94506114c7602087016112a1565b93506040860135925060608601359150608086013567ffffffffffffffff8111156114f0578182fd5b61148c88828901611331565b6000806040838503121561150e578182fd5b611517836112a1565b91506020830135801515811461152b578182fd5b809150509250929050565b60008060408385031215611548578182fd5b611551836112a1565b946020939093013593505050565b600080600060608486031215611573578283fd5b61157c846112a1565b95602085013595506040909401359392505050565b600080604083850312156115a3578182fd5b823567ffffffffffffffff808211156115ba578384fd5b818501915085601f8301126115cd578384fd5b813560206115da826119d4565b6040516115e78282611a4b565b8381528281019150858301600585901b870184018b1015611606578889fd5b8896505b8487101561162f5761161b816112a1565b83526001969096019591830191830161160a565b5096505086013592505080821115611645578283fd5b50611652858286016112bd565b9150509250929050565b60006020828403121561166d578081fd5b81356113ba81611b61565b600060208284031215611689578081fd5b81516113ba81611b61565b6000602082840312156116a5578081fd5b813567ffffffffffffffff8111156116bb578182fd5b6116c784828501611331565b949350505050565b6000602082840312156116e0578081fd5b5035919050565b600080604083850312156116f9578182fd5b82359150602083013567ffffffffffffffff811115611716578182fd5b61165285828601611331565b6000815180845260208085019450808401835b8381101561175157815187529582019590820190600101611735565b509495945050505050565b60008151808452815b8181101561178157602081850181015186830182015201611765565b818111156117925782602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0386811682528516602082015260a0604082018190526000906117d390830186611722565b82810360608401526117e58186611722565b905082810360808401526117f9818561175c565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061183f9083018461175c565b979650505050505050565b6020815260006113ba6020830184611722565b6040815260006118706040830185611722565b82810360208401526118828185611722565b95945050505050565b6020815260006113ba602083018461175c565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526010908201526f125b9d985b1a59081d1bdad95b881a5960821b604082015260600190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff8211156119ee576119ee611aa9565b5060051b60200190565b60008219821115611a0b57611a0b611a93565b500190565b600181811c90821680611a2457607f821691505b60208210811415611a4557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715611a7157611a71611aa9565b6040525050565b6000600019821415611a8c57611a8c611a93565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115611ad457600481823e5160e01c5b90565b600060443d1015611ae55790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611b1557505050505090565b8285019150815181811115611b2d5750505050505090565b843d8701016020828501011115611b475750505050505090565b611b5660208286010187611a4b565b509095945050505050565b6001600160e01b031981168114610a2457600080fdfea264697066735822122039530a509f841ff05ef4eea901b717785cd875d8957157a65df6aa92557a288764736f6c63430008040033

Deployed Bytecode Sourcemap

37337:945:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23807:231;;;;;;:::i;:::-;;:::i;:::-;;;16819:25:1;;;16807:2;16792:18;23807:231:0;;;;;;;;22830:310;;;;;;:::i;:::-;;:::i;:::-;;;10790:14:1;;10783:22;10765:41;;10753:2;10738:18;22830:310:0;10720:92:1;37416:48:0;;;:::i;:::-;;;;;;;:::i;37927:173::-;;;;;;:::i;:::-;;:::i;37783:139::-;;;;;;:::i;:::-;;:::i;:::-;;38105:174;;;;;;:::i;:::-;;:::i;37586:192::-;;;;;;:::i;:::-;;:::i;25746:442::-;;;;;;:::i;:::-;;:::i;24204:524::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3534:103::-;;;:::i;2883:87::-;2956:6;;2883:87;;-1:-1:-1;;;;;2956:6:0;;;8431:51:1;;8419:2;8404:18;2883:87:0;8386:102:1;37468:29:0;;;:::i;24801:155::-;;;;;;:::i;:::-;;:::i;37387:23::-;;;;;;37503:41;;;;;;:::i;:::-;;:::i;25028:168::-;;;;;;:::i;:::-;-1:-1:-1;;;;;25151:27:0;;;25127:4;25151:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;25028:168;25268:401;;;;;;:::i;:::-;;:::i;3792:201::-;;;;;;:::i;:::-;;:::i;23807:231::-;23893:7;-1:-1:-1;;;;;23921:21:0;;23913:77;;;;-1:-1:-1;;;23913:77:0;;12073:2:1;23913:77:0;;;12055:21:1;12112:2;12092:18;;;12085:30;12151:34;12131:18;;;12124:62;-1:-1:-1;;;12202:18:1;;;12195:41;12253:19;;23913:77:0;;;;;;;;;-1:-1:-1;24008:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;24008:22:0;;;;;;;;;;;;23807:231::o;22830:310::-;22932:4;-1:-1:-1;;;;;;22969:41:0;;-1:-1:-1;;;22969:41:0;;:110;;-1:-1:-1;;;;;;;23027:52:0;;-1:-1:-1;;;23027:52:0;22969:110;:163;;;-1:-1:-1;;;;;;;;;;14363:40:0;;;23096:36;22949:183;22830:310;-1:-1:-1;;22830:310:0:o;37416:48::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37927:173::-;37994:13;38042:4;;38036:3;:10;38015:53;;;;-1:-1:-1;;;38015:53:0;;;;;;;:::i;:::-;38080:15;;;;:8;:15;;;;;38073:22;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37927:173;;;:::o;37783:139::-;2956:6;;-1:-1:-1;;;;;2956:6:0;1689:10;3103:23;3095:68;;;;-1:-1:-1;;;3095:68:0;;;;;;;:::i;:::-;37863:4:::1;::::0;37853:16:::1;::::0;;;:8:::1;:16;::::0;;;;;;;:23;;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;;37897:4;;37886:17;37891:4;37886:17;;;;;;:::i;:::-;;;;;;;;37916:1;37908:4;;:9;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;37783:139:0:o;38105:174::-;2956:6;;-1:-1:-1;;;;;2956:6:0;1689:10;3103:23;3095:68;;;;-1:-1:-1;;;3095:68:0;;;;;;;:::i;:::-;38213:4:::1;;38207:3;:10;38186:53;;;;-1:-1:-1::0;;;38186:53:0::1;;;;;;;:::i;:::-;38244:30;38251:3;38256;38261:7;38244:30;;;;;;;;;;;::::0;:5:::1;:30::i;:::-;38105:174:::0;;;:::o;37586:192::-;2956:6;;-1:-1:-1;;;;;2956:6:0;1689:10;3103:23;3095:68;;;;-1:-1:-1;;;3095:68:0;;;;;;;:::i;:::-;37696:4:::1;;37690:3;:10;37669:53;;;;-1:-1:-1::0;;;37669:53:0::1;;;;;;;:::i;:::-;37727:13;::::0;;;:8:::1;:13;::::0;;;;;;;:20;;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;;37768:3;37757:16;37762:4;37757:16;;;;;;:::i;:::-;;;;;;;;37586:192:::0;;:::o;25746:442::-;-1:-1:-1;;;;;25979:20:0;;1689:10;25979:20;;:60;;-1:-1:-1;26003:36:0;26020:4;1689:10;25028:168;:::i;26003:36::-;25957:160;;;;-1:-1:-1;;;25957:160:0;;14053:2:1;25957:160:0;;;14035:21:1;14092:2;14072:18;;;14065:30;14131:34;14111:18;;;14104:62;-1:-1:-1;;;14182:18:1;;;14175:48;14240:19;;25957:160:0;14025:240:1;25957:160:0;26128:52;26151:4;26157:2;26161:3;26166:7;26175:4;26128:22;:52::i;:::-;25746:442;;;;;:::o;24204:524::-;24360:16;24421:3;:10;24402:8;:15;:29;24394:83;;;;-1:-1:-1;;;24394:83:0;;15654:2:1;24394:83:0;;;15636:21:1;15693:2;15673:18;;;15666:30;15732:34;15712:18;;;15705:62;-1:-1:-1;;;15783:18:1;;;15776:39;15832:19;;24394:83:0;15626:231:1;24394:83:0;24490:30;24537:8;:15;24523:30;;;;;;-1:-1:-1;;;24523:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24523:30:0;;24490:63;;24571:9;24566:122;24590:8;:15;24586:1;:19;24566:122;;;24646:30;24656:8;24665:1;24656:11;;;;;;-1:-1:-1;;;24656:11:0;;;;;;;;;;;;;;;24669:3;24673:1;24669:6;;;;;;-1:-1:-1;;;24669:6:0;;;;;;;;;;;;;;;24646:9;:30::i;:::-;24627:13;24641:1;24627:16;;;;;;-1:-1:-1;;;24627:16:0;;;;;;;;;;;;;;;;;;:49;24607:3;;;:::i;:::-;;;24566:122;;;-1:-1:-1;24707:13:0;24204:524;-1:-1:-1;;;24204:524:0:o;3534:103::-;2956:6;;-1:-1:-1;;;;;2956:6:0;1689:10;3103:23;3095:68;;;;-1:-1:-1;;;3095:68:0;;;;;;;:::i;:::-;3599:30:::1;3626:1;3599:18;:30::i;:::-;3534:103::o:0;37468:29::-;;;;;;;:::i;24801:155::-;24896:52;1689:10;24929:8;24939;24896:18;:52::i;:::-;24801:155;;:::o;37503:41::-;;;;;;;;;;;;;;;;:::i;25268:401::-;-1:-1:-1;;;;;25476:20:0;;1689:10;25476:20;;:60;;-1:-1:-1;25500:36:0;25517:4;1689:10;25028:168;:::i;25500:36::-;25454:151;;;;-1:-1:-1;;;25454:151:0;;12892:2:1;25454:151:0;;;12874:21:1;12931:2;12911:18;;;12904:30;12970:34;12950:18;;;12943:62;-1:-1:-1;;;13021:18:1;;;13014:39;13070:19;;25454:151:0;12864:231:1;25454:151:0;25616:45;25634:4;25640:2;25644;25648:6;25656:4;25616:17;:45::i;3792:201::-;2956:6;;-1:-1:-1;;;;;2956:6:0;1689:10;3103:23;3095:68;;;;-1:-1:-1;;;3095:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3881:22:0;::::1;3873:73;;;::::0;-1:-1:-1;;;3873:73:0;;12485:2:1;3873:73:0::1;::::0;::::1;12467:21:1::0;12524:2;12504:18;;;12497:30;12563:34;12543:18;;;12536:62;-1:-1:-1;;;12614:18:1;;;12607:36;12660:19;;3873:73:0::1;12457:228:1::0;3873:73:0::1;3957:28;3976:8;3957:18;:28::i;:::-;3792:201:::0;:::o;30222:569::-;-1:-1:-1;;;;;30375:16:0;;30367:62;;;;-1:-1:-1;;;30367:62:0;;16473:2:1;30367:62:0;;;16455:21:1;16512:2;16492:18;;;16485:30;16551:34;16531:18;;;16524:62;-1:-1:-1;;;16602:18:1;;;16595:31;16643:19;;30367:62:0;16445:223:1;30367:62:0;1689:10;30486:102;1689:10;30442:16;30529:2;30533:21;30551:2;30533:17;:21::i;:::-;30556:25;30574:6;30556:17;:25::i;30486:102::-;30601:9;:13;;;;;;;;;;;-1:-1:-1;;;;;30601:17:0;;;;;;;;;:27;;30622:6;;30601:9;:27;;30622:6;;30601:27;:::i;:::-;;;;-1:-1:-1;;30644:52:0;;;17029:25:1;;;17085:2;17070:18;;17063:34;;;-1:-1:-1;;;;;30644:52:0;;;;30677:1;;30644:52;;;;;;17002:18:1;30644:52:0;;;;;;;30709:74;30740:8;30758:1;30762:2;30766;30770:6;30778:4;30709:30;:74::i;27830:1074::-;28057:7;:14;28043:3;:10;:28;28035:81;;;;-1:-1:-1;;;28035:81:0;;16064:2:1;28035:81:0;;;16046:21:1;16103:2;16083:18;;;16076:30;16142:34;16122:18;;;16115:62;-1:-1:-1;;;16193:18:1;;;16186:38;16241:19;;28035:81:0;16036:230:1;28035:81:0;-1:-1:-1;;;;;28135:16:0;;28127:66;;;;-1:-1:-1;;;28127:66:0;;;;;;;:::i;:::-;1689:10;28206:16;28323:421;28347:3;:10;28343:1;:14;28323:421;;;28379:10;28392:3;28396:1;28392:6;;;;;;-1:-1:-1;;;28392:6:0;;;;;;;;;;;;;;;28379:19;;28413:14;28430:7;28438:1;28430:10;;;;;;-1:-1:-1;;;28430:10:0;;;;;;;;;;;;;;;;;;;;28457:19;28479:13;;;;;;;;;;-1:-1:-1;;;;;28479:19:0;;;;;;;;;;;;28430:10;;-1:-1:-1;28521:21:0;;;;28513:76;;;;-1:-1:-1;;;28513:76:0;;;;;;;:::i;:::-;28633:9;:13;;;;;;;;;;;-1:-1:-1;;;;;28633:19:0;;;;;;;;;;28655:20;;;28633:42;;28705:17;;;;;;;:27;;28655:20;;28633:9;28705:27;;28655:20;;28705:27;:::i;:::-;;;;;;;;28323:421;;;28359:3;;;;:::i;:::-;;;28323:421;;;;28791:2;-1:-1:-1;;;;;28761:47:0;28785:4;-1:-1:-1;;;;;28761:47:0;28775:8;-1:-1:-1;;;;;28761:47:0;;28795:3;28800:7;28761:47;;;;;;;:::i;:::-;;;;;;;;28821:75;28857:8;28867:4;28873:2;28877:3;28882:7;28891:4;28821:35;:75::i;:::-;27830:1074;;;;;;:::o;4153:191::-;4246:6;;;-1:-1:-1;;;;;4263:17:0;;;-1:-1:-1;;;;;;4263:17:0;;;;;;;4296:40;;4246:6;;;4263:17;4246:6;;4296:40;;4227:16;;4296:40;4153:191;;:::o;34016:331::-;34171:8;-1:-1:-1;;;;;34162:17:0;:5;-1:-1:-1;;;;;34162:17:0;;;34154:71;;;;-1:-1:-1;;;34154:71:0;;15244:2:1;34154:71:0;;;15226:21:1;15283:2;15263:18;;;15256:30;15322:34;15302:18;;;15295:62;-1:-1:-1;;;15373:18:1;;;15366:39;15422:19;;34154:71:0;15216:231:1;34154:71:0;-1:-1:-1;;;;;34236:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;34236:46:0;;;;;;;;;;34298:41;;10765::1;;;34298::0;;10738:18:1;34298:41:0;;;;;;;34016:331;;;:::o;26652:820::-;-1:-1:-1;;;;;26840:16:0;;26832:66;;;;-1:-1:-1;;;26832:66:0;;;;;;;:::i;:::-;1689:10;26955:96;1689:10;26986:4;26992:2;26996:21;27014:2;26996:17;:21::i;26955:96::-;27064:19;27086:13;;;;;;;;;;;-1:-1:-1;;;;;27086:19:0;;;;;;;;;;27124:21;;;;27116:76;;;;-1:-1:-1;;;27116:76:0;;;;;;;:::i;:::-;27228:9;:13;;;;;;;;;;;-1:-1:-1;;;;;27228:19:0;;;;;;;;;;27250:20;;;27228:42;;27292:17;;;;;;;:27;;27250:20;;27228:9;27292:27;;27250:20;;27292:27;:::i;:::-;;;;-1:-1:-1;;27337:46:0;;;17029:25:1;;;17085:2;17070:18;;17063:34;;;-1:-1:-1;;;;;27337:46:0;;;;;;;;;;;;;;17002:18:1;27337:46:0;;;;;;;27396:68;27427:8;27437:4;27443:2;27447;27451:6;27459:4;27396:30;:68::i;:::-;26652:820;;;;;;;:::o;37105:198::-;37225:16;;;37239:1;37225:16;;;;;;;;;37171;;37200:22;;37225:16;;;;;;;;;;;;-1:-1:-1;37225:16:0;37200:41;;37263:7;37252:5;37258:1;37252:8;;;;;;-1:-1:-1;;;37252:8:0;;;;;;;;;;;;;;;;;;:18;37290:5;37105:198;-1:-1:-1;;37105:198:0:o;35532:744::-;-1:-1:-1;;;;;35747:13:0;;5493:20;5541:8;35743:526;;35783:72;;-1:-1:-1;;;35783:72:0;;-1:-1:-1;;;;;35783:38:0;;;;;:72;;35822:8;;35832:4;;35838:2;;35842:6;;35850:4;;35783:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35783:72:0;;;;;;;;-1:-1:-1;;35783:72:0;;;;;;;;;;;;:::i;:::-;;;35779:479;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;36131:6;36124:14;;-1:-1:-1;;;36124:14:0;;;;;;;;:::i;35779:479::-;;;36180:62;;-1:-1:-1;;;36180:62:0;;11243:2:1;36180:62:0;;;11225:21:1;11282:2;11262:18;;;11255:30;11321:34;11301:18;;;11294:62;-1:-1:-1;;;11372:18:1;;;11365:50;11432:19;;36180:62:0;11215:242:1;35779:479:0;-1:-1:-1;;;;;;35905:55:0;;-1:-1:-1;;;35905:55:0;35901:154;;35985:50;;-1:-1:-1;;;35985:50:0;;;;;;;:::i;36284:813::-;-1:-1:-1;;;;;36524:13:0;;5493:20;5541:8;36520:570;;36560:79;;-1:-1:-1;;;36560:79:0;;-1:-1:-1;;;;;36560:43:0;;;;;:79;;36604:8;;36614:4;;36620:3;;36625:7;;36634:4;;36560:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36560:79:0;;;;;;;;-1:-1:-1;;36560:79:0;;;;;;;;;;;;:::i;:::-;;;36556:523;;;;:::i;:::-;-1:-1:-1;;;;;;36721:60:0;;-1:-1:-1;;;36721:60:0;36717:159;;36806:50;;-1:-1:-1;;;36806:50:0;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:755::-;246:5;299:3;292:4;284:6;280:17;276:27;266:2;;321:5;314;307:20;266:2;361:6;348:20;387:4;410:43;450:2;410:43;:::i;:::-;482:2;476:9;494:31;522:2;514:6;494:31;:::i;:::-;560:18;;;594:15;;;;-1:-1:-1;629:15:1;;;679:1;675:10;;;663:23;;659:32;;656:41;-1:-1:-1;653:2:1;;;714:5;707;700:20;653:2;740:5;754:163;768:2;765:1;762:9;754:163;;;825:17;;813:30;;863:12;;;;895;;;;786:1;779:9;754:163;;;-1:-1:-1;935:6:1;;256:691;-1:-1:-1;;;;;;;256:691:1:o;952:575::-;994:5;1047:3;1040:4;1032:6;1028:17;1024:27;1014:2;;1069:5;1062;1055:20;1014:2;1109:6;1096:20;1135:18;1131:2;1128:26;1125:2;;;1157:18;;:::i;:::-;1206:2;1200:9;1218:67;1273:2;1254:13;;-1:-1:-1;;1250:27:1;1279:4;1246:38;1200:9;1218:67;:::i;:::-;1309:2;1301:6;1294:18;1355:3;1348:4;1343:2;1335:6;1331:15;1327:26;1324:35;1321:2;;;1376:5;1369;1362:20;1321:2;1444;1437:4;1429:6;1425:17;1418:4;1410:6;1406:17;1393:54;1467:15;;;1484:4;1463:26;1456:41;;;;1471:6;1004:523;-1:-1:-1;;1004:523:1:o;1532:196::-;1591:6;1644:2;1632:9;1623:7;1619:23;1615:32;1612:2;;;1665:6;1657;1650:22;1612:2;1693:29;1712:9;1693:29;:::i;:::-;1683:39;1602:126;-1:-1:-1;;;1602:126:1:o;1733:270::-;1801:6;1809;1862:2;1850:9;1841:7;1837:23;1833:32;1830:2;;;1883:6;1875;1868:22;1830:2;1911:29;1930:9;1911:29;:::i;:::-;1901:39;;1959:38;1993:2;1982:9;1978:18;1959:38;:::i;:::-;1949:48;;1820:183;;;;;:::o;2008:983::-;2162:6;2170;2178;2186;2194;2247:3;2235:9;2226:7;2222:23;2218:33;2215:2;;;2269:6;2261;2254:22;2215:2;2297:29;2316:9;2297:29;:::i;:::-;2287:39;;2345:38;2379:2;2368:9;2364:18;2345:38;:::i;:::-;2335:48;;2434:2;2423:9;2419:18;2406:32;2457:18;2498:2;2490:6;2487:14;2484:2;;;2519:6;2511;2504:22;2484:2;2547:61;2600:7;2591:6;2580:9;2576:22;2547:61;:::i;:::-;2537:71;;2661:2;2650:9;2646:18;2633:32;2617:48;;2690:2;2680:8;2677:16;2674:2;;;2711:6;2703;2696:22;2674:2;2739:63;2794:7;2783:8;2772:9;2768:24;2739:63;:::i;:::-;2729:73;;2855:3;2844:9;2840:19;2827:33;2811:49;;2885:2;2875:8;2872:16;2869:2;;;2906:6;2898;2891:22;2869:2;;2934:51;2977:7;2966:8;2955:9;2951:24;2934:51;:::i;:::-;2924:61;;;2205:786;;;;;;;;:::o;2996:626::-;3100:6;3108;3116;3124;3132;3185:3;3173:9;3164:7;3160:23;3156:33;3153:2;;;3207:6;3199;3192:22;3153:2;3235:29;3254:9;3235:29;:::i;:::-;3225:39;;3283:38;3317:2;3306:9;3302:18;3283:38;:::i;:::-;3273:48;;3368:2;3357:9;3353:18;3340:32;3330:42;;3419:2;3408:9;3404:18;3391:32;3381:42;;3474:3;3463:9;3459:19;3446:33;3502:18;3494:6;3491:30;3488:2;;;3539:6;3531;3524:22;3488:2;3567:49;3608:7;3599:6;3588:9;3584:22;3567:49;:::i;3627:367::-;3692:6;3700;3753:2;3741:9;3732:7;3728:23;3724:32;3721:2;;;3774:6;3766;3759:22;3721:2;3802:29;3821:9;3802:29;:::i;:::-;3792:39;;3881:2;3870:9;3866:18;3853:32;3928:5;3921:13;3914:21;3907:5;3904:32;3894:2;;3955:6;3947;3940:22;3894:2;3983:5;3973:15;;;3711:283;;;;;:::o;3999:264::-;4067:6;4075;4128:2;4116:9;4107:7;4103:23;4099:32;4096:2;;;4149:6;4141;4134:22;4096:2;4177:29;4196:9;4177:29;:::i;:::-;4167:39;4253:2;4238:18;;;;4225:32;;-1:-1:-1;;;4086:177:1:o;4268:332::-;4345:6;4353;4361;4414:2;4402:9;4393:7;4389:23;4385:32;4382:2;;;4435:6;4427;4420:22;4382:2;4463:29;4482:9;4463:29;:::i;:::-;4453:39;4539:2;4524:18;;4511:32;;-1:-1:-1;4590:2:1;4575:18;;;4562:32;;4372:228;-1:-1:-1;;;4372:228:1:o;4605:1274::-;4723:6;4731;4784:2;4772:9;4763:7;4759:23;4755:32;4752:2;;;4805:6;4797;4790:22;4752:2;4850:9;4837:23;4879:18;4920:2;4912:6;4909:14;4906:2;;;4941:6;4933;4926:22;4906:2;4984:6;4973:9;4969:22;4959:32;;5029:7;5022:4;5018:2;5014:13;5010:27;5000:2;;5056:6;5048;5041:22;5000:2;5097;5084:16;5119:4;5142:43;5182:2;5142:43;:::i;:::-;5214:2;5208:9;5226:31;5254:2;5246:6;5226:31;:::i;:::-;5292:18;;;5326:15;;;;-1:-1:-1;5361:11:1;;;5403:1;5399:10;;;5391:19;;5387:28;;5384:41;-1:-1:-1;5381:2:1;;;5443:6;5435;5428:22;5381:2;5470:6;5461:15;;5485:169;5499:2;5496:1;5493:9;5485:169;;;5556:23;5575:3;5556:23;:::i;:::-;5544:36;;5517:1;5510:9;;;;;5600:12;;;;5632;;5485:169;;;-1:-1:-1;5673:6:1;-1:-1:-1;;5717:18:1;;5704:32;;-1:-1:-1;;5748:16:1;;;5745:2;;;5782:6;5774;5767:22;5745:2;;5810:63;5865:7;5854:8;5843:9;5839:24;5810:63;:::i;:::-;5800:73;;;4742:1137;;;;;:::o;5884:255::-;5942:6;5995:2;5983:9;5974:7;5970:23;5966:32;5963:2;;;6016:6;6008;6001:22;5963:2;6060:9;6047:23;6079:30;6103:5;6079:30;:::i;6144:259::-;6213:6;6266:2;6254:9;6245:7;6241:23;6237:32;6234:2;;;6287:6;6279;6272:22;6234:2;6324:9;6318:16;6343:30;6367:5;6343:30;:::i;6408:341::-;6477:6;6530:2;6518:9;6509:7;6505:23;6501:32;6498:2;;;6551:6;6543;6536:22;6498:2;6596:9;6583:23;6629:18;6621:6;6618:30;6615:2;;;6666:6;6658;6651:22;6615:2;6694:49;6735:7;6726:6;6715:9;6711:22;6694:49;:::i;:::-;6684:59;6488:261;-1:-1:-1;;;;6488:261:1:o;6754:190::-;6813:6;6866:2;6854:9;6845:7;6841:23;6837:32;6834:2;;;6887:6;6879;6872:22;6834:2;-1:-1:-1;6915:23:1;;6824:120;-1:-1:-1;6824:120:1:o;6949:409::-;7027:6;7035;7088:2;7076:9;7067:7;7063:23;7059:32;7056:2;;;7109:6;7101;7094:22;7056:2;7150:9;7137:23;7127:33;;7211:2;7200:9;7196:18;7183:32;7238:18;7230:6;7227:30;7224:2;;;7275:6;7267;7260:22;7224:2;7303:49;7344:7;7335:6;7324:9;7320:22;7303:49;:::i;7363:437::-;7416:3;7454:5;7448:12;7481:6;7476:3;7469:19;7507:4;7536:2;7531:3;7527:12;7520:19;;7573:2;7566:5;7562:14;7594:3;7606:169;7620:6;7617:1;7614:13;7606:169;;;7681:13;;7669:26;;7715:12;;;;7750:15;;;;7642:1;7635:9;7606:169;;;-1:-1:-1;7791:3:1;;7424:376;-1:-1:-1;;;;;7424:376:1:o;7805:475::-;7846:3;7884:5;7878:12;7911:6;7906:3;7899:19;7936:3;7948:162;7962:6;7959:1;7956:13;7948:162;;;8024:4;8080:13;;;8076:22;;8070:29;8052:11;;;8048:20;;8041:59;7977:12;7948:162;;;8128:6;8125:1;8122:13;8119:2;;;8194:3;8187:4;8178:6;8173:3;8169:16;8165:27;8158:40;8119:2;-1:-1:-1;8262:2:1;8241:15;-1:-1:-1;;8237:29:1;8228:39;;;;8269:4;8224:50;;7854:426;-1:-1:-1;;7854:426:1:o;8493:826::-;-1:-1:-1;;;;;8890:15:1;;;8872:34;;8942:15;;8937:2;8922:18;;8915:43;8852:3;8989:2;8974:18;;8967:31;;;8815:4;;9021:57;;9058:19;;9050:6;9021:57;:::i;:::-;9126:9;9118:6;9114:22;9109:2;9098:9;9094:18;9087:50;9160:44;9197:6;9189;9160:44;:::i;:::-;9146:58;;9253:9;9245:6;9241:22;9235:3;9224:9;9220:19;9213:51;9281:32;9306:6;9298;9281:32;:::i;:::-;9273:40;8824:495;-1:-1:-1;;;;;;;;8824:495:1:o;9324:560::-;-1:-1:-1;;;;;9621:15:1;;;9603:34;;9673:15;;9668:2;9653:18;;9646:43;9720:2;9705:18;;9698:34;;;9763:2;9748:18;;9741:34;;;9583:3;9806;9791:19;;9784:32;;;9546:4;;9833:45;;9858:19;;9850:6;9833:45;:::i;:::-;9825:53;9555:329;-1:-1:-1;;;;;;;9555:329:1:o;9889:261::-;10068:2;10057:9;10050:21;10031:4;10088:56;10140:2;10129:9;10125:18;10117:6;10088:56;:::i;10155:465::-;10412:2;10401:9;10394:21;10375:4;10438:56;10490:2;10479:9;10475:18;10467:6;10438:56;:::i;:::-;10542:9;10534:6;10530:22;10525:2;10514:9;10510:18;10503:50;10570:44;10607:6;10599;10570:44;:::i;:::-;10562:52;10384:236;-1:-1:-1;;;;;10384:236:1:o;10817:219::-;10966:2;10955:9;10948:21;10929:4;10986:44;11026:2;11015:9;11011:18;11003:6;10986:44;:::i;11462:404::-;11664:2;11646:21;;;11703:2;11683:18;;;11676:30;11742:34;11737:2;11722:18;;11715:62;-1:-1:-1;;;11808:2:1;11793:18;;11786:38;11856:3;11841:19;;11636:230::o;13100:340::-;13302:2;13284:21;;;13341:2;13321:18;;;13314:30;-1:-1:-1;;;13375:2:1;13360:18;;13353:46;13431:2;13416:18;;13274:166::o;13445:401::-;13647:2;13629:21;;;13686:2;13666:18;;;13659:30;13725:34;13720:2;13705:18;;13698:62;-1:-1:-1;;;13791:2:1;13776:18;;13769:35;13836:3;13821:19;;13619:227::o;14270:406::-;14472:2;14454:21;;;14511:2;14491:18;;;14484:30;14550:34;14545:2;14530:18;;14523:62;-1:-1:-1;;;14616:2:1;14601:18;;14594:40;14666:3;14651:19;;14444:232::o;14681:356::-;14883:2;14865:21;;;14902:18;;;14895:30;14961:34;14956:2;14941:18;;14934:62;15028:2;15013:18;;14855:182::o;17108:183::-;17168:4;17201:18;17193:6;17190:30;17187:2;;;17223:18;;:::i;:::-;-1:-1:-1;17268:1:1;17264:14;17280:4;17260:25;;17177:114::o;17296:128::-;17336:3;17367:1;17363:6;17360:1;17357:13;17354:2;;;17373:18;;:::i;:::-;-1:-1:-1;17409:9:1;;17344:80::o;17429:380::-;17508:1;17504:12;;;;17551;;;17572:2;;17626:4;17618:6;17614:17;17604:27;;17572:2;17679;17671:6;17668:14;17648:18;17645:38;17642:2;;;17725:10;17720:3;17716:20;17713:1;17706:31;17760:4;17757:1;17750:15;17788:4;17785:1;17778:15;17642:2;;17484:325;;;:::o;17814:249::-;17924:2;17905:13;;-1:-1:-1;;17901:27:1;17889:40;;17959:18;17944:34;;17980:22;;;17941:62;17938:2;;;18006:18;;:::i;:::-;18042:2;18035:22;-1:-1:-1;;17861:202:1:o;18068:135::-;18107:3;-1:-1:-1;;18128:17:1;;18125:2;;;18148:18;;:::i;:::-;-1:-1:-1;18195:1:1;18184:13;;18115:88::o;18208:127::-;18269:10;18264:3;18260:20;18257:1;18250:31;18300:4;18297:1;18290:15;18324:4;18321:1;18314:15;18340:127;18401:10;18396:3;18392:20;18389:1;18382:31;18432:4;18429:1;18422:15;18456:4;18453:1;18446:15;18472:185;18507:3;18549:1;18531:16;18528:23;18525:2;;;18599:1;18594:3;18589;18574:27;18630:10;18625:3;18621:20;18525:2;18515:142;:::o;18662:671::-;18701:3;18743:4;18725:16;18722:26;18719:2;;;18709:624;:::o;18719:2::-;18785;18779:9;-1:-1:-1;;18850:16:1;18846:25;;18843:1;18779:9;18822:50;18901:4;18895:11;18925:16;18960:18;19031:2;19024:4;19016:6;19012:17;19009:25;19004:2;18996:6;18993:14;18990:45;18987:2;;;19038:5;;;;;18709:624;:::o;18987:2::-;19075:6;19069:4;19065:17;19054:28;;19111:3;19105:10;19138:2;19130:6;19127:14;19124:2;;;19144:5;;;;;;18709:624;:::o;19124:2::-;19228;19209:16;19203:4;19199:27;19195:36;19188:4;19179:6;19174:3;19170:16;19166:27;19163:69;19160:2;;;19235:5;;;;;;18709:624;:::o;19160:2::-;19251:57;19302:4;19293:6;19285;19281:19;19277:30;19271:4;19251:57;:::i;:::-;-1:-1:-1;19324:3:1;;18709:624;-1:-1:-1;;;;;18709:624:1:o;19338:131::-;-1:-1:-1;;;;;;19412:32:1;;19402:43;;19392:2;;19459:1;19456;19449:12

Swarm Source

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