ETH Price: $3,258.46 (-0.30%)
Gas: 1 Gwei

Token

DigiWorld Pass ()
 

Overview

Max Total Supply

100

Holders

106

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

0x5a934DD1967C9BB3a6Ff5A329de373A9dB920607
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:
DigiPass

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-25
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.5.0) (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.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (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 have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.8.0) (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: address zero is not a valid owner");
        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 token owner or 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: caller is not token owner or approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * 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 _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {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 `ids` and `amounts` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

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

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

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

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

        return array;
    }
}

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/extensions/ERC1155Supply.sol)

pragma solidity ^0.8.0;


/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates whether any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155Supply.totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        if (from == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] += amounts[i];
            }
        }

        if (to == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                uint256 id = ids[i];
                uint256 amount = amounts[i];
                uint256 supply = _totalSupply[id];
                require(supply >= amount, "ERC1155: burn amount exceeds totalSupply");
                unchecked {
                    _totalSupply[id] = supply - amount;
                }
            }
        }
    }
}

// File: contracts/digiI.sol


pragma solidity 0.8.11;




contract DigiPass is ERC1155Supply, Ownable
{
    bool public saleIsActive = false;
    uint public season = 1;
    uint public maxPerTransaction = 1;
    uint public maxPerWallet = 1;
    uint public maxSupply = 100;
    uint256 public PRICE = .5 ether; 
    string public name = "DigiWorld Pass";
    mapping(address => uint256) public whitelist;


    string public contractURIstr = "";

    constructor() ERC1155("https://ipfs.io/ipfs/Qmcu1YupLotr4o1EwydD1EX3hxrDwfLxke3kVeaL9rLRW2/final.json") {}


    function contractURI() public view returns (string memory)
    {
       return contractURIstr;
    }

    function setContractURI(string memory newuri) external onlyOwner
    {
       contractURIstr = newuri;
    }

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

    function setName(string memory _name) public onlyOwner 
    {
        name = _name;
    }
    function setPrice(uint _price) public onlyOwner 
    {
        PRICE = _price;
    }

    function getName() public view returns (string memory) 
    {
       return name;
    }

    function removeFromWhitelist(address[] calldata toRemoveAddresses) public onlyOwner
    {
        for (uint i = 0; i < toRemoveAddresses.length; i++) {
            delete whitelist[toRemoveAddresses[i]];
        }
    }

    function mintToken(uint256 amount) external payable
    {
        require(whitelist[msg.sender] == 1, "NOT_IN_WHITELIST OR ALREADY MINTED");
        require(msg.sender == tx.origin, "No transaction from smart contracts!");
        require(saleIsActive, "Sale must be active to mint");
        require(amount > 0 && amount <= maxPerTransaction, "Max per transaction reached, sale not allowed");
        require(totalSupply(season) + amount <= maxSupply , "Purchase would exceed max supply");
        require(msg.value >= PRICE, "Not enough ETH for transaction");

        _mint(msg.sender, season, amount, "");
        whitelist[msg.sender] = 2;
    }

    function mintReservedTokens(address to, uint256 amount) external onlyOwner
    {
        _mint(to, season, amount, "");
    }

    function withdraw(

    ) external onlyOwner {
        (bool success, ) = owner().call{
            value: address(this).balance
        }("");

        require(success,
            "error: withdrawal failed"
        );
    }

    function flipSaleState() external onlyOwner
    {
        saleIsActive = !saleIsActive;
    }

    function changeSaleDetails(uint _season, uint _maxPerTransaction, uint _maxPerWallet, uint _maxSupply) external onlyOwner
    {
        season = _season;
        maxPerTransaction = _maxPerTransaction;
        maxPerWallet = _maxPerWallet;
        maxSupply = _maxSupply;
        saleIsActive = true;
    }

    function addToWhitelist(address[] calldata toAddAddresses) 
    external onlyOwner
    {
        for (uint i = 0; i < toAddAddresses.length; i++) {
            whitelist[toAddAddresses[i]] = 1;
        }
    }


   
}

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":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"toAddAddresses","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"_season","type":"uint256"},{"internalType":"uint256","name":"_maxPerTransaction","type":"uint256"},{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"changeSaleDetails","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURIstr","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintReservedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"toRemoveAddresses","type":"address[]"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"season","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"}],"name":"setName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6004805460ff60a01b1916905560016005819055600681905560075560646008556706f05b59d3b2000060095560c0604052600e60808190526d44696769576f726c64205061737360901b60a09081526200005e91600a919062000130565b506040805160208101918290526000908190526200007f91600c9162000130565b503480156200008d57600080fd5b506040518060800160405280604e815260200162002679604e9139620000b381620000c5565b50620000bf33620000de565b62000213565b8051620000da90600290602084019062000130565b5050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013e90620001d6565b90600052602060002090601f016020900481019282620001625760008555620001ad565b82601f106200017d57805160ff1916838001178555620001ad565b82800160010185558215620001ad579182015b82811115620001ad57825182559160200191906001019062000190565b50620001bb929150620001bf565b5090565b5b80821115620001bb5760008155600101620001c0565b600181811c90821680620001eb57607f821691505b602082108114156200020d57634e487b7160e01b600052602260045260246000fd5b50919050565b61245680620002236000396000f3fe6080604052600436106102035760003560e01c8063715018a611610118578063c47f0027116100a0578063e8a3d4851161006f578063e8a3d485146105b7578063e985e9c5146105cc578063eb8d244414610615578063f242432a14610636578063f2fde38b1461065657600080fd5b8063c47f002714610558578063c50b0fb014610578578063c634d0321461058e578063d5abeb01146105a157600080fd5b806391b7f5ed116100e757806391b7f5ed1461049e578063938e3d7b146104be5780639b19251a146104de578063a22cb4651461050b578063bd85b0391461052b57600080fd5b8063715018a61461042b5780637f649783146104405780638d859f3e146104605780638da5cb5b1461047657600080fd5b806334918dfd1161019b5780634e1273f41161016a5780634e1273f41461036f5780634f558e791461039c578063548db174146103cb57806357535c43146103eb578063651bf4b01461040b57600080fd5b806334918dfd146103195780633ccfd60b1461032e578063453c2310146103435780634b980d671461035957600080fd5b806306fdde03116101d757806306fdde03146102af5780630e89341c146102c457806317d7de7c146102e45780632eb2c2d6146102f957600080fd5b8062fdd58e1461020857806301ffc9a71461023b57806302fe53051461026b5780630612d3641461028d575b600080fd5b34801561021457600080fd5b50610228610223366004611af0565b610676565b6040519081526020015b60405180910390f35b34801561024757600080fd5b5061025b610256366004611b30565b61070c565b6040519015158152602001610232565b34801561027757600080fd5b5061028b610286366004611bf5565b61075e565b005b34801561029957600080fd5b506102a2610772565b6040516102329190611c93565b3480156102bb57600080fd5b506102a2610800565b3480156102d057600080fd5b506102a26102df366004611ca6565b61080d565b3480156102f057600080fd5b506102a26108a1565b34801561030557600080fd5b5061028b610314366004611d74565b610933565b34801561032557600080fd5b5061028b61097f565b34801561033a57600080fd5b5061028b6109a8565b34801561034f57600080fd5b5061022860075481565b34801561036557600080fd5b5061022860065481565b34801561037b57600080fd5b5061038f61038a366004611e1e565b610a64565b6040516102329190611f24565b3480156103a857600080fd5b5061025b6103b7366004611ca6565b600090815260036020526040902054151590565b3480156103d757600080fd5b5061028b6103e6366004611f37565b610b8e565b3480156103f757600080fd5b5061028b610406366004611af0565b610bff565b34801561041757600080fd5b5061028b610426366004611fac565b610c28565b34801561043757600080fd5b5061028b610c57565b34801561044c57600080fd5b5061028b61045b366004611f37565b610c6b565b34801561046c57600080fd5b5061022860095481565b34801561048257600080fd5b506004546040516001600160a01b039091168152602001610232565b3480156104aa57600080fd5b5061028b6104b9366004611ca6565b610cd7565b3480156104ca57600080fd5b5061028b6104d9366004611bf5565b610ce4565b3480156104ea57600080fd5b506102286104f9366004611fde565b600b6020526000908152604090205481565b34801561051757600080fd5b5061028b610526366004611ff9565b610cff565b34801561053757600080fd5b50610228610546366004611ca6565b60009081526003602052604090205490565b34801561056457600080fd5b5061028b610573366004611bf5565b610d0a565b34801561058457600080fd5b5061022860055481565b61028b61059c366004611ca6565b610d25565b3480156105ad57600080fd5b5061022860085481565b3480156105c357600080fd5b506102a2610fb0565b3480156105d857600080fd5b5061025b6105e7366004612035565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561062157600080fd5b5060045461025b90600160a01b900460ff1681565b34801561064257600080fd5b5061028b610651366004612068565b610fbf565b34801561066257600080fd5b5061028b610671366004611fde565b611004565b60006001600160a01b0383166106e65760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061073d57506001600160e01b031982166303a24d0760e21b145b8061075857506301ffc9a760e01b6001600160e01b03198316145b92915050565b61076661107a565b61076f816110d4565b50565b600c805461077f906120cd565b80601f01602080910402602001604051908101604052809291908181526020018280546107ab906120cd565b80156107f85780601f106107cd576101008083540402835291602001916107f8565b820191906000526020600020905b8154815290600101906020018083116107db57829003601f168201915b505050505081565b600a805461077f906120cd565b60606002805461081c906120cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610848906120cd565b80156108955780601f1061086a57610100808354040283529160200191610895565b820191906000526020600020905b81548152906001019060200180831161087857829003601f168201915b50505050509050919050565b6060600a80546108b0906120cd565b80601f01602080910402602001604051908101604052809291908181526020018280546108dc906120cd565b80156109295780601f106108fe57610100808354040283529160200191610929565b820191906000526020600020905b81548152906001019060200180831161090c57829003601f168201915b5050505050905090565b6001600160a01b03851633148061094f575061094f85336105e7565b61096b5760405162461bcd60e51b81526004016106dd90612108565b61097885858585856110e7565b5050505050565b61098761107a565b6004805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6109b061107a565b60006109c46004546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a0e576040519150601f19603f3d011682016040523d82523d6000602084013e610a13565b606091505b505090508061076f5760405162461bcd60e51b815260206004820152601860248201527f6572726f723a207769746864726177616c206661696c6564000000000000000060448201526064016106dd565b60608151835114610ac95760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016106dd565b6000835167ffffffffffffffff811115610ae557610ae5611b54565b604051908082528060200260200182016040528015610b0e578160200160208202803683370190505b50905060005b8451811015610b8657610b59858281518110610b3257610b32612156565b6020026020010151858381518110610b4c57610b4c612156565b6020026020010151610676565b828281518110610b6b57610b6b612156565b6020908102919091010152610b7f81612182565b9050610b14565b509392505050565b610b9661107a565b60005b81811015610bfa57600b6000848484818110610bb757610bb7612156565b9050602002016020810190610bcc9190611fde565b6001600160a01b03168152602081019190915260400160009081205580610bf281612182565b915050610b99565b505050565b610c0761107a565b610c248260055483604051806020016040528060008152506112d2565b5050565b610c3061107a565b6005939093556006919091556007556008556004805460ff60a01b1916600160a01b179055565b610c5f61107a565b610c6960006113f5565b565b610c7361107a565b60005b81811015610bfa576001600b6000858585818110610c9657610c96612156565b9050602002016020810190610cab9190611fde565b6001600160a01b0316815260208101919091526040016000205580610ccf81612182565b915050610c76565b610cdf61107a565b600955565b610cec61107a565b8051610c2490600c906020840190611a3b565b610c24338383611447565b610d1261107a565b8051610c2490600a906020840190611a3b565b336000908152600b6020526040902054600114610d8f5760405162461bcd60e51b815260206004820152602260248201527f4e4f545f494e5f57484954454c495354204f5220414c5245414459204d494e54604482015261115160f21b60648201526084016106dd565b333214610dea5760405162461bcd60e51b8152602060048201526024808201527f4e6f207472616e73616374696f6e2066726f6d20736d61727420636f6e7472616044820152636374732160e01b60648201526084016106dd565b600454600160a01b900460ff16610e435760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e74000000000060448201526064016106dd565b600081118015610e5557506006548111155b610eb75760405162461bcd60e51b815260206004820152602d60248201527f4d617820706572207472616e73616374696f6e20726561636865642c2073616c60448201526c19481b9bdd08185b1b1bddd959609a1b60648201526084016106dd565b60085481610ed360055460009081526003602052604090205490565b610edd919061219d565b1115610f2b5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526064016106dd565b600954341015610f7d5760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420656e6f7567682045544820666f72207472616e73616374696f6e000060448201526064016106dd565b610f9a3360055483604051806020016040528060008152506112d2565b50336000908152600b6020526040902060029055565b6060600c80546108b0906120cd565b6001600160a01b038516331480610fdb5750610fdb85336105e7565b610ff75760405162461bcd60e51b81526004016106dd90612108565b6109788585858585611528565b61100c61107a565b6001600160a01b0381166110715760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106dd565b61076f816113f5565b6004546001600160a01b03163314610c695760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106dd565b8051610c24906002906020840190611a3b565b81518351146111495760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b60648201526084016106dd565b6001600160a01b03841661116f5760405162461bcd60e51b81526004016106dd906121b5565b3361117e818787878787611660565b60005b845181101561126457600085828151811061119e5761119e612156565b6020026020010151905060008583815181106111bc576111bc612156565b602090810291909101810151600084815280835260408082206001600160a01b038e16835290935291909120549091508181101561120c5760405162461bcd60e51b81526004016106dd906121fa565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b1682528120805484929061124990849061219d565b925050819055505050508061125d90612182565b9050611181565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516112b4929190612244565b60405180910390a46112ca8187878787876117d9565b505050505050565b6001600160a01b0384166113325760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106dd565b33600061133e85611935565b9050600061134b85611935565b905061135c83600089858589611660565b6000868152602081815260408083206001600160a01b038b1684529091528120805487929061138c90849061219d565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46113ec83600089898989611980565b50505050505050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156114bb5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016106dd565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b03841661154e5760405162461bcd60e51b81526004016106dd906121b5565b33600061155a85611935565b9050600061156785611935565b9050611577838989858589611660565b6000868152602081815260408083206001600160a01b038c168452909152902054858110156115b85760405162461bcd60e51b81526004016106dd906121fa565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a168252812080548892906115f590849061219d565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611655848a8a8a8a8a611980565b505050505050505050565b6001600160a01b0385166116e75760005b83518110156116e55782818151811061168c5761168c612156565b6020026020010151600360008684815181106116aa576116aa612156565b6020026020010151815260200190815260200160002060008282546116cf919061219d565b909155506116de905081612182565b9050611671565b505b6001600160a01b0384166112ca5760005b83518110156113ec57600084828151811061171557611715612156565b60200260200101519050600084838151811061173357611733612156565b60200260200101519050600060036000848152602001908152602001600020549050818110156117b65760405162461bcd60e51b815260206004820152602860248201527f455243313135353a206275726e20616d6f756e74206578636565647320746f74604482015267616c537570706c7960c01b60648201526084016106dd565b600092835260036020526040909220910390556117d281612182565b90506116f8565b6001600160a01b0384163b156112ca5760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061181d9089908990889088908890600401612272565b6020604051808303816000875af1925050508015611858575060408051601f3d908101601f19168201909252611855918101906122d0565b60015b611905576118646122ed565b806308c379a0141561189e5750611879612309565b8061188457506118a0565b8060405162461bcd60e51b81526004016106dd9190611c93565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e2d455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016106dd565b6001600160e01b0319811663bc197c8160e01b146113ec5760405162461bcd60e51b81526004016106dd90612393565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061196f5761196f612156565b602090810291909101015292915050565b6001600160a01b0384163b156112ca5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906119c490899089908890889088906004016123db565b6020604051808303816000875af19250505080156119ff575060408051601f3d908101601f191682019092526119fc918101906122d0565b60015b611a0b576118646122ed565b6001600160e01b0319811663f23a6e6160e01b146113ec5760405162461bcd60e51b81526004016106dd90612393565b828054611a47906120cd565b90600052602060002090601f016020900481019282611a695760008555611aaf565b82601f10611a8257805160ff1916838001178555611aaf565b82800160010185558215611aaf579182015b82811115611aaf578251825591602001919060010190611a94565b50611abb929150611abf565b5090565b5b80821115611abb5760008155600101611ac0565b80356001600160a01b0381168114611aeb57600080fd5b919050565b60008060408385031215611b0357600080fd5b611b0c83611ad4565b946020939093013593505050565b6001600160e01b03198116811461076f57600080fd5b600060208284031215611b4257600080fd5b8135611b4d81611b1a565b9392505050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff81118282101715611b9057611b90611b54565b6040525050565b600067ffffffffffffffff831115611bb157611bb1611b54565b604051611bc8601f8501601f191660200182611b6a565b809150838152848484011115611bdd57600080fd5b83836020830137600060208583010152509392505050565b600060208284031215611c0757600080fd5b813567ffffffffffffffff811115611c1e57600080fd5b8201601f81018413611c2f57600080fd5b611c3e84823560208401611b97565b949350505050565b6000815180845260005b81811015611c6c57602081850181015186830182015201611c50565b81811115611c7e576000602083870101525b50601f01601f19169290920160200192915050565b602081526000611b4d6020830184611c46565b600060208284031215611cb857600080fd5b5035919050565b600067ffffffffffffffff821115611cd957611cd9611b54565b5060051b60200190565b600082601f830112611cf457600080fd5b81356020611d0182611cbf565b604051611d0e8282611b6a565b83815260059390931b8501820192828101915086841115611d2e57600080fd5b8286015b84811015611d495780358352918301918301611d32565b509695505050505050565b600082601f830112611d6557600080fd5b611b4d83833560208501611b97565b600080600080600060a08688031215611d8c57600080fd5b611d9586611ad4565b9450611da360208701611ad4565b9350604086013567ffffffffffffffff80821115611dc057600080fd5b611dcc89838a01611ce3565b94506060880135915080821115611de257600080fd5b611dee89838a01611ce3565b93506080880135915080821115611e0457600080fd5b50611e1188828901611d54565b9150509295509295909350565b60008060408385031215611e3157600080fd5b823567ffffffffffffffff80821115611e4957600080fd5b818501915085601f830112611e5d57600080fd5b81356020611e6a82611cbf565b604051611e778282611b6a565b83815260059390931b8501820192828101915089841115611e9757600080fd5b948201945b83861015611ebc57611ead86611ad4565b82529482019490820190611e9c565b96505086013592505080821115611ed257600080fd5b50611edf85828601611ce3565b9150509250929050565b600081518084526020808501945080840160005b83811015611f1957815187529582019590820190600101611efd565b509495945050505050565b602081526000611b4d6020830184611ee9565b60008060208385031215611f4a57600080fd5b823567ffffffffffffffff80821115611f6257600080fd5b818501915085601f830112611f7657600080fd5b813581811115611f8557600080fd5b8660208260051b8501011115611f9a57600080fd5b60209290920196919550909350505050565b60008060008060808587031215611fc257600080fd5b5050823594602084013594506040840135936060013592509050565b600060208284031215611ff057600080fd5b611b4d82611ad4565b6000806040838503121561200c57600080fd5b61201583611ad4565b91506020830135801515811461202a57600080fd5b809150509250929050565b6000806040838503121561204857600080fd5b61205183611ad4565b915061205f60208401611ad4565b90509250929050565b600080600080600060a0868803121561208057600080fd5b61208986611ad4565b945061209760208701611ad4565b93506040860135925060608601359150608086013567ffffffffffffffff8111156120c157600080fd5b611e1188828901611d54565b600181811c908216806120e157607f821691505b6020821081141561210257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526d195c881bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156121965761219661216c565b5060010190565b600082198211156121b0576121b061216c565b500190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6040815260006122576040830185611ee9565b82810360208401526122698185611ee9565b95945050505050565b6001600160a01b0386811682528516602082015260a06040820181905260009061229e90830186611ee9565b82810360608401526122b08186611ee9565b905082810360808401526122c48185611c46565b98975050505050505050565b6000602082840312156122e257600080fd5b8151611b4d81611b1a565b600060033d11156123065760046000803e5060005160e01c5b90565b600060443d10156123175790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561234757505050505090565b828501915081518181111561235f5750505050505090565b843d87010160208285010111156123795750505050505090565b61238860208286010187611b6a565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061241590830184611c46565b97965050505050505056fea264697066735822122009eccf52830bedb9c0ff1a222e1a440a1389f9c8e02f6cf67e1d994df32e6cf164736f6c634300080b003368747470733a2f2f697066732e696f2f697066732f516d6375315975704c6f7472346f314577796444314558336878724477664c786b65336b5665614c39724c5257322f66696e616c2e6a736f6e

Deployed Bytecode

0x6080604052600436106102035760003560e01c8063715018a611610118578063c47f0027116100a0578063e8a3d4851161006f578063e8a3d485146105b7578063e985e9c5146105cc578063eb8d244414610615578063f242432a14610636578063f2fde38b1461065657600080fd5b8063c47f002714610558578063c50b0fb014610578578063c634d0321461058e578063d5abeb01146105a157600080fd5b806391b7f5ed116100e757806391b7f5ed1461049e578063938e3d7b146104be5780639b19251a146104de578063a22cb4651461050b578063bd85b0391461052b57600080fd5b8063715018a61461042b5780637f649783146104405780638d859f3e146104605780638da5cb5b1461047657600080fd5b806334918dfd1161019b5780634e1273f41161016a5780634e1273f41461036f5780634f558e791461039c578063548db174146103cb57806357535c43146103eb578063651bf4b01461040b57600080fd5b806334918dfd146103195780633ccfd60b1461032e578063453c2310146103435780634b980d671461035957600080fd5b806306fdde03116101d757806306fdde03146102af5780630e89341c146102c457806317d7de7c146102e45780632eb2c2d6146102f957600080fd5b8062fdd58e1461020857806301ffc9a71461023b57806302fe53051461026b5780630612d3641461028d575b600080fd5b34801561021457600080fd5b50610228610223366004611af0565b610676565b6040519081526020015b60405180910390f35b34801561024757600080fd5b5061025b610256366004611b30565b61070c565b6040519015158152602001610232565b34801561027757600080fd5b5061028b610286366004611bf5565b61075e565b005b34801561029957600080fd5b506102a2610772565b6040516102329190611c93565b3480156102bb57600080fd5b506102a2610800565b3480156102d057600080fd5b506102a26102df366004611ca6565b61080d565b3480156102f057600080fd5b506102a26108a1565b34801561030557600080fd5b5061028b610314366004611d74565b610933565b34801561032557600080fd5b5061028b61097f565b34801561033a57600080fd5b5061028b6109a8565b34801561034f57600080fd5b5061022860075481565b34801561036557600080fd5b5061022860065481565b34801561037b57600080fd5b5061038f61038a366004611e1e565b610a64565b6040516102329190611f24565b3480156103a857600080fd5b5061025b6103b7366004611ca6565b600090815260036020526040902054151590565b3480156103d757600080fd5b5061028b6103e6366004611f37565b610b8e565b3480156103f757600080fd5b5061028b610406366004611af0565b610bff565b34801561041757600080fd5b5061028b610426366004611fac565b610c28565b34801561043757600080fd5b5061028b610c57565b34801561044c57600080fd5b5061028b61045b366004611f37565b610c6b565b34801561046c57600080fd5b5061022860095481565b34801561048257600080fd5b506004546040516001600160a01b039091168152602001610232565b3480156104aa57600080fd5b5061028b6104b9366004611ca6565b610cd7565b3480156104ca57600080fd5b5061028b6104d9366004611bf5565b610ce4565b3480156104ea57600080fd5b506102286104f9366004611fde565b600b6020526000908152604090205481565b34801561051757600080fd5b5061028b610526366004611ff9565b610cff565b34801561053757600080fd5b50610228610546366004611ca6565b60009081526003602052604090205490565b34801561056457600080fd5b5061028b610573366004611bf5565b610d0a565b34801561058457600080fd5b5061022860055481565b61028b61059c366004611ca6565b610d25565b3480156105ad57600080fd5b5061022860085481565b3480156105c357600080fd5b506102a2610fb0565b3480156105d857600080fd5b5061025b6105e7366004612035565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561062157600080fd5b5060045461025b90600160a01b900460ff1681565b34801561064257600080fd5b5061028b610651366004612068565b610fbf565b34801561066257600080fd5b5061028b610671366004611fde565b611004565b60006001600160a01b0383166106e65760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061073d57506001600160e01b031982166303a24d0760e21b145b8061075857506301ffc9a760e01b6001600160e01b03198316145b92915050565b61076661107a565b61076f816110d4565b50565b600c805461077f906120cd565b80601f01602080910402602001604051908101604052809291908181526020018280546107ab906120cd565b80156107f85780601f106107cd576101008083540402835291602001916107f8565b820191906000526020600020905b8154815290600101906020018083116107db57829003601f168201915b505050505081565b600a805461077f906120cd565b60606002805461081c906120cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610848906120cd565b80156108955780601f1061086a57610100808354040283529160200191610895565b820191906000526020600020905b81548152906001019060200180831161087857829003601f168201915b50505050509050919050565b6060600a80546108b0906120cd565b80601f01602080910402602001604051908101604052809291908181526020018280546108dc906120cd565b80156109295780601f106108fe57610100808354040283529160200191610929565b820191906000526020600020905b81548152906001019060200180831161090c57829003601f168201915b5050505050905090565b6001600160a01b03851633148061094f575061094f85336105e7565b61096b5760405162461bcd60e51b81526004016106dd90612108565b61097885858585856110e7565b5050505050565b61098761107a565b6004805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6109b061107a565b60006109c46004546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a0e576040519150601f19603f3d011682016040523d82523d6000602084013e610a13565b606091505b505090508061076f5760405162461bcd60e51b815260206004820152601860248201527f6572726f723a207769746864726177616c206661696c6564000000000000000060448201526064016106dd565b60608151835114610ac95760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016106dd565b6000835167ffffffffffffffff811115610ae557610ae5611b54565b604051908082528060200260200182016040528015610b0e578160200160208202803683370190505b50905060005b8451811015610b8657610b59858281518110610b3257610b32612156565b6020026020010151858381518110610b4c57610b4c612156565b6020026020010151610676565b828281518110610b6b57610b6b612156565b6020908102919091010152610b7f81612182565b9050610b14565b509392505050565b610b9661107a565b60005b81811015610bfa57600b6000848484818110610bb757610bb7612156565b9050602002016020810190610bcc9190611fde565b6001600160a01b03168152602081019190915260400160009081205580610bf281612182565b915050610b99565b505050565b610c0761107a565b610c248260055483604051806020016040528060008152506112d2565b5050565b610c3061107a565b6005939093556006919091556007556008556004805460ff60a01b1916600160a01b179055565b610c5f61107a565b610c6960006113f5565b565b610c7361107a565b60005b81811015610bfa576001600b6000858585818110610c9657610c96612156565b9050602002016020810190610cab9190611fde565b6001600160a01b0316815260208101919091526040016000205580610ccf81612182565b915050610c76565b610cdf61107a565b600955565b610cec61107a565b8051610c2490600c906020840190611a3b565b610c24338383611447565b610d1261107a565b8051610c2490600a906020840190611a3b565b336000908152600b6020526040902054600114610d8f5760405162461bcd60e51b815260206004820152602260248201527f4e4f545f494e5f57484954454c495354204f5220414c5245414459204d494e54604482015261115160f21b60648201526084016106dd565b333214610dea5760405162461bcd60e51b8152602060048201526024808201527f4e6f207472616e73616374696f6e2066726f6d20736d61727420636f6e7472616044820152636374732160e01b60648201526084016106dd565b600454600160a01b900460ff16610e435760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e74000000000060448201526064016106dd565b600081118015610e5557506006548111155b610eb75760405162461bcd60e51b815260206004820152602d60248201527f4d617820706572207472616e73616374696f6e20726561636865642c2073616c60448201526c19481b9bdd08185b1b1bddd959609a1b60648201526084016106dd565b60085481610ed360055460009081526003602052604090205490565b610edd919061219d565b1115610f2b5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526064016106dd565b600954341015610f7d5760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420656e6f7567682045544820666f72207472616e73616374696f6e000060448201526064016106dd565b610f9a3360055483604051806020016040528060008152506112d2565b50336000908152600b6020526040902060029055565b6060600c80546108b0906120cd565b6001600160a01b038516331480610fdb5750610fdb85336105e7565b610ff75760405162461bcd60e51b81526004016106dd90612108565b6109788585858585611528565b61100c61107a565b6001600160a01b0381166110715760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106dd565b61076f816113f5565b6004546001600160a01b03163314610c695760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106dd565b8051610c24906002906020840190611a3b565b81518351146111495760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b60648201526084016106dd565b6001600160a01b03841661116f5760405162461bcd60e51b81526004016106dd906121b5565b3361117e818787878787611660565b60005b845181101561126457600085828151811061119e5761119e612156565b6020026020010151905060008583815181106111bc576111bc612156565b602090810291909101810151600084815280835260408082206001600160a01b038e16835290935291909120549091508181101561120c5760405162461bcd60e51b81526004016106dd906121fa565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b1682528120805484929061124990849061219d565b925050819055505050508061125d90612182565b9050611181565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516112b4929190612244565b60405180910390a46112ca8187878787876117d9565b505050505050565b6001600160a01b0384166113325760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106dd565b33600061133e85611935565b9050600061134b85611935565b905061135c83600089858589611660565b6000868152602081815260408083206001600160a01b038b1684529091528120805487929061138c90849061219d565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46113ec83600089898989611980565b50505050505050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156114bb5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016106dd565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b03841661154e5760405162461bcd60e51b81526004016106dd906121b5565b33600061155a85611935565b9050600061156785611935565b9050611577838989858589611660565b6000868152602081815260408083206001600160a01b038c168452909152902054858110156115b85760405162461bcd60e51b81526004016106dd906121fa565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a168252812080548892906115f590849061219d565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611655848a8a8a8a8a611980565b505050505050505050565b6001600160a01b0385166116e75760005b83518110156116e55782818151811061168c5761168c612156565b6020026020010151600360008684815181106116aa576116aa612156565b6020026020010151815260200190815260200160002060008282546116cf919061219d565b909155506116de905081612182565b9050611671565b505b6001600160a01b0384166112ca5760005b83518110156113ec57600084828151811061171557611715612156565b60200260200101519050600084838151811061173357611733612156565b60200260200101519050600060036000848152602001908152602001600020549050818110156117b65760405162461bcd60e51b815260206004820152602860248201527f455243313135353a206275726e20616d6f756e74206578636565647320746f74604482015267616c537570706c7960c01b60648201526084016106dd565b600092835260036020526040909220910390556117d281612182565b90506116f8565b6001600160a01b0384163b156112ca5760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061181d9089908990889088908890600401612272565b6020604051808303816000875af1925050508015611858575060408051601f3d908101601f19168201909252611855918101906122d0565b60015b611905576118646122ed565b806308c379a0141561189e5750611879612309565b8061188457506118a0565b8060405162461bcd60e51b81526004016106dd9190611c93565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e2d455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016106dd565b6001600160e01b0319811663bc197c8160e01b146113ec5760405162461bcd60e51b81526004016106dd90612393565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061196f5761196f612156565b602090810291909101015292915050565b6001600160a01b0384163b156112ca5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906119c490899089908890889088906004016123db565b6020604051808303816000875af19250505080156119ff575060408051601f3d908101601f191682019092526119fc918101906122d0565b60015b611a0b576118646122ed565b6001600160e01b0319811663f23a6e6160e01b146113ec5760405162461bcd60e51b81526004016106dd90612393565b828054611a47906120cd565b90600052602060002090601f016020900481019282611a695760008555611aaf565b82601f10611a8257805160ff1916838001178555611aaf565b82800160010185558215611aaf579182015b82811115611aaf578251825591602001919060010190611a94565b50611abb929150611abf565b5090565b5b80821115611abb5760008155600101611ac0565b80356001600160a01b0381168114611aeb57600080fd5b919050565b60008060408385031215611b0357600080fd5b611b0c83611ad4565b946020939093013593505050565b6001600160e01b03198116811461076f57600080fd5b600060208284031215611b4257600080fd5b8135611b4d81611b1a565b9392505050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff81118282101715611b9057611b90611b54565b6040525050565b600067ffffffffffffffff831115611bb157611bb1611b54565b604051611bc8601f8501601f191660200182611b6a565b809150838152848484011115611bdd57600080fd5b83836020830137600060208583010152509392505050565b600060208284031215611c0757600080fd5b813567ffffffffffffffff811115611c1e57600080fd5b8201601f81018413611c2f57600080fd5b611c3e84823560208401611b97565b949350505050565b6000815180845260005b81811015611c6c57602081850181015186830182015201611c50565b81811115611c7e576000602083870101525b50601f01601f19169290920160200192915050565b602081526000611b4d6020830184611c46565b600060208284031215611cb857600080fd5b5035919050565b600067ffffffffffffffff821115611cd957611cd9611b54565b5060051b60200190565b600082601f830112611cf457600080fd5b81356020611d0182611cbf565b604051611d0e8282611b6a565b83815260059390931b8501820192828101915086841115611d2e57600080fd5b8286015b84811015611d495780358352918301918301611d32565b509695505050505050565b600082601f830112611d6557600080fd5b611b4d83833560208501611b97565b600080600080600060a08688031215611d8c57600080fd5b611d9586611ad4565b9450611da360208701611ad4565b9350604086013567ffffffffffffffff80821115611dc057600080fd5b611dcc89838a01611ce3565b94506060880135915080821115611de257600080fd5b611dee89838a01611ce3565b93506080880135915080821115611e0457600080fd5b50611e1188828901611d54565b9150509295509295909350565b60008060408385031215611e3157600080fd5b823567ffffffffffffffff80821115611e4957600080fd5b818501915085601f830112611e5d57600080fd5b81356020611e6a82611cbf565b604051611e778282611b6a565b83815260059390931b8501820192828101915089841115611e9757600080fd5b948201945b83861015611ebc57611ead86611ad4565b82529482019490820190611e9c565b96505086013592505080821115611ed257600080fd5b50611edf85828601611ce3565b9150509250929050565b600081518084526020808501945080840160005b83811015611f1957815187529582019590820190600101611efd565b509495945050505050565b602081526000611b4d6020830184611ee9565b60008060208385031215611f4a57600080fd5b823567ffffffffffffffff80821115611f6257600080fd5b818501915085601f830112611f7657600080fd5b813581811115611f8557600080fd5b8660208260051b8501011115611f9a57600080fd5b60209290920196919550909350505050565b60008060008060808587031215611fc257600080fd5b5050823594602084013594506040840135936060013592509050565b600060208284031215611ff057600080fd5b611b4d82611ad4565b6000806040838503121561200c57600080fd5b61201583611ad4565b91506020830135801515811461202a57600080fd5b809150509250929050565b6000806040838503121561204857600080fd5b61205183611ad4565b915061205f60208401611ad4565b90509250929050565b600080600080600060a0868803121561208057600080fd5b61208986611ad4565b945061209760208701611ad4565b93506040860135925060608601359150608086013567ffffffffffffffff8111156120c157600080fd5b611e1188828901611d54565b600181811c908216806120e157607f821691505b6020821081141561210257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526d195c881bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156121965761219661216c565b5060010190565b600082198211156121b0576121b061216c565b500190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6040815260006122576040830185611ee9565b82810360208401526122698185611ee9565b95945050505050565b6001600160a01b0386811682528516602082015260a06040820181905260009061229e90830186611ee9565b82810360608401526122b08186611ee9565b905082810360808401526122c48185611c46565b98975050505050505050565b6000602082840312156122e257600080fd5b8151611b4d81611b1a565b600060033d11156123065760046000803e5060005160e01c5b90565b600060443d10156123175790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561234757505050505090565b828501915081518181111561235f5750505050505090565b843d87010160208285010111156123795750505050505090565b61238860208286010187611b6a565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061241590830184611c46565b97965050505050505056fea264697066735822122009eccf52830bedb9c0ff1a222e1a440a1389f9c8e02f6cf67e1d994df32e6cf164736f6c634300080b0033

Deployed Bytecode Sourcemap

42210:3082:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24532:230;;;;;;;;;;-1:-1:-1;24532:230:0;;;;;:::i;:::-;;:::i;:::-;;;597:25:1;;;585:2;570:18;24532:230:0;;;;;;;;23555:310;;;;;;;;;;-1:-1:-1;23555:310:0;;;;;:::i;:::-;;:::i;:::-;;;1184:14:1;;1177:22;1159:41;;1147:2;1132:18;23555:310:0;1019:187:1;42965:96:0;;;;;;;;;;-1:-1:-1;42965:96:0;;;;;:::i;:::-;;:::i;:::-;;42577:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42478:37::-;;;;;;;;;;;;;:::i;24276:105::-;;;;;;;;;;-1:-1:-1;24276:105:0;;;;;:::i;:::-;;:::i;43262:90::-;;;;;;;;;;;;;:::i;26475:438::-;;;;;;;;;;-1:-1:-1;26475:438:0;;;;;:::i;:::-;;:::i;44640:96::-;;;;;;;;;;;;;:::i;44397:235::-;;;;;;;;;;;;;:::i;42370:28::-;;;;;;;;;;;;;;;;42330:33;;;;;;;;;;;;;;;;24928:524;;;;;;;;;;-1:-1:-1;24928:524:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;41008:122::-;;;;;;;;;;-1:-1:-1;41008:122:0;;;;;:::i;:::-;41065:4;40886:16;;;:12;:16;;;;;;-1:-1:-1;;;41008:122:0;43360:224;;;;;;;;;;-1:-1:-1;43360:224:0;;;;;:::i;:::-;;:::i;44261:128::-;;;;;;;;;;-1:-1:-1;44261:128:0;;;;;:::i;:::-;;:::i;44744:313::-;;;;;;;;;;-1:-1:-1;44744:313:0;;;;;:::i;:::-;;:::i;2809:103::-;;;;;;;;;;;;;:::i;45065:215::-;;;;;;;;;;-1:-1:-1;45065:215:0;;;;;:::i;:::-;;:::i;42439:31::-;;;;;;;;;;;;;;;;2161:87;;;;;;;;;;-1:-1:-1;2234:6:0;;2161:87;;-1:-1:-1;;;;;2234:6:0;;;8580:51:1;;8568:2;8553:18;2161:87:0;8434:203:1;43167:87:0;;;;;;;;;;-1:-1:-1;43167:87:0;;;;;:::i;:::-;;:::i;42846:111::-;;;;;;;;;;-1:-1:-1;42846:111:0;;;;;:::i;:::-;;:::i;42522:44::-;;;;;;;;;;-1:-1:-1;42522:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;25525:155;;;;;;;;;;-1:-1:-1;25525:155:0;;;;;:::i;:::-;;:::i;40797:113::-;;;;;;;;;;-1:-1:-1;40797:113:0;;;;;:::i;:::-;40859:7;40886:16;;;:12;:16;;;;;;;40797:113;43069:92;;;;;;;;;;-1:-1:-1;43069:92:0;;;;;:::i;:::-;;:::i;42301:22::-;;;;;;;;;;;;;;;;43592:661;;;;;;:::i;:::-;;:::i;42405:27::-;;;;;;;;;;;;;;;;42735:103;;;;;;;;;;;;;:::i;25752:168::-;;;;;;;;;;-1:-1:-1;25752:168:0;;;;;:::i;:::-;-1:-1:-1;;;;;25875:27:0;;;25851:4;25875:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;25752:168;42262:32;;;;;;;;;;-1:-1:-1;42262:32:0;;;;-1:-1:-1;;;42262:32:0;;;;;;25992:406;;;;;;;;;;-1:-1:-1;25992:406:0;;;;;:::i;:::-;;:::i;3067:201::-;;;;;;;;;;-1:-1:-1;3067:201:0;;;;;:::i;:::-;;:::i;24532:230::-;24618:7;-1:-1:-1;;;;;24646:21:0;;24638:76;;;;-1:-1:-1;;;24638:76:0;;10263:2:1;24638:76:0;;;10245:21:1;10302:2;10282:18;;;10275:30;10341:34;10321:18;;;10314:62;-1:-1:-1;;;10392:18:1;;;10385:40;10442:19;;24638:76:0;;;;;;;;;-1:-1:-1;24732:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;24732:22:0;;;;;;;;;;;;24532:230::o;23555:310::-;23657:4;-1:-1:-1;;;;;;23694:41:0;;-1:-1:-1;;;23694:41:0;;:110;;-1:-1:-1;;;;;;;23752:52:0;;-1:-1:-1;;;23752:52:0;23694:110;:163;;;-1:-1:-1;;;;;;;;;;14945:40:0;;;23821:36;23674:183;23555:310;-1:-1:-1;;23555:310:0:o;42965:96::-;2047:13;:11;:13::i;:::-;43038:15:::1;43046:6;43038:7;:15::i;:::-;42965:96:::0;:::o;42577:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42478:37::-;;;;;;;:::i;24276:105::-;24336:13;24369:4;24362:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24276:105;;;:::o;43262:90::-;43302:13;43340:4;43333:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43262:90;:::o;26475:438::-;-1:-1:-1;;;;;26708:20:0;;792:10;26708:20;;:60;;-1:-1:-1;26732:36:0;26749:4;792:10;25752:168;:::i;26732:36::-;26686:156;;;;-1:-1:-1;;;26686:156:0;;;;;;;:::i;:::-;26853:52;26876:4;26882:2;26886:3;26891:7;26900:4;26853:22;:52::i;:::-;26475:438;;;;;:::o;44640:96::-;2047:13;:11;:13::i;:::-;44716:12:::1;::::0;;-1:-1:-1;;;;44700:28:0;::::1;-1:-1:-1::0;;;44716:12:0;;;::::1;;;44715:13;44700:28:::0;;::::1;;::::0;;44640:96::o;44397:235::-;2047:13;:11;:13::i;:::-;44456:12:::1;44474:7;2234:6:::0;;-1:-1:-1;;;;;2234:6:0;;2161:87;44474:7:::1;-1:-1:-1::0;;;;;44474:12:0::1;44508:21;44474:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44455:89;;;44565:7;44557:67;;;::::0;-1:-1:-1;;;44557:67:0;;11684:2:1;44557:67:0::1;::::0;::::1;11666:21:1::0;11723:2;11703:18;;;11696:30;11762:26;11742:18;;;11735:54;11806:18;;44557:67:0::1;11482:348:1::0;24928:524:0;25084:16;25145:3;:10;25126:8;:15;:29;25118:83;;;;-1:-1:-1;;;25118:83:0;;12037:2:1;25118:83:0;;;12019:21:1;12076:2;12056:18;;;12049:30;12115:34;12095:18;;;12088:62;-1:-1:-1;;;12166:18:1;;;12159:39;12215:19;;25118:83:0;11835:405:1;25118:83:0;25214:30;25261:8;:15;25247:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25247:30:0;;25214:63;;25295:9;25290:122;25314:8;:15;25310:1;:19;25290:122;;;25370:30;25380:8;25389:1;25380:11;;;;;;;;:::i;:::-;;;;;;;25393:3;25397:1;25393:6;;;;;;;;:::i;:::-;;;;;;;25370:9;:30::i;:::-;25351:13;25365:1;25351:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;25331:3;;;:::i;:::-;;;25290:122;;;-1:-1:-1;25431:13:0;24928:524;-1:-1:-1;;;24928:524:0:o;43360:224::-;2047:13;:11;:13::i;:::-;43465:6:::1;43460:117;43477:28:::0;;::::1;43460:117;;;43534:9;:31;43544:17;;43562:1;43544:20;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;43534:31:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;43534:31:0;;;43527:38;43507:3;::::1;::::0;::::1;:::i;:::-;;;;43460:117;;;;43360:224:::0;;:::o;44261:128::-;2047:13;:11;:13::i;:::-;44352:29:::1;44358:2;44362:6;;44370;44352:29;;;;;;;;;;;::::0;:5:::1;:29::i;:::-;44261:128:::0;;:::o;44744:313::-;2047:13;:11;:13::i;:::-;44882:6:::1;:16:::0;;;;44909:17:::1;:38:::0;;;;44958:12:::1;:28:::0;44997:9:::1;:22:::0;45030:12:::1;:19:::0;;-1:-1:-1;;;;45030:19:0::1;-1:-1:-1::0;;;45030:19:0::1;::::0;;44744:313::o;2809:103::-;2047:13;:11;:13::i;:::-;2874:30:::1;2901:1;2874:18;:30::i;:::-;2809:103::o:0;45065:215::-;2047:13;:11;:13::i;:::-;45170:6:::1;45165:108;45182:25:::0;;::::1;45165:108;;;45260:1;45229:9;:28;45239:14;;45254:1;45239:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;45229:28:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;45229:28:0;:32;45209:3;::::1;::::0;::::1;:::i;:::-;;;;45165:108;;43167:87:::0;2047:13;:11;:13::i;:::-;43232:5:::1;:14:::0;43167:87::o;42846:111::-;2047:13;:11;:13::i;:::-;42926:23;;::::1;::::0;:14:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;25525:155::-:0;25620:52;792:10;25653:8;25663;25620:18;:52::i;43069:92::-;2047:13;:11;:13::i;:::-;43141:12;;::::1;::::0;:4:::1;::::0;:12:::1;::::0;::::1;::::0;::::1;:::i;43592:661::-:0;43678:10;43668:21;;;;:9;:21;;;;;;43693:1;43668:26;43660:73;;;;-1:-1:-1;;;43660:73:0;;12851:2:1;43660:73:0;;;12833:21:1;12890:2;12870:18;;;12863:30;12929:34;12909:18;;;12902:62;-1:-1:-1;;;12980:18:1;;;12973:32;13022:19;;43660:73:0;12649:398:1;43660:73:0;43752:10;43766:9;43752:23;43744:72;;;;-1:-1:-1;;;43744:72:0;;13254:2:1;43744:72:0;;;13236:21:1;13293:2;13273:18;;;13266:30;13332:34;13312:18;;;13305:62;-1:-1:-1;;;13383:18:1;;;13376:34;13427:19;;43744:72:0;13052:400:1;43744:72:0;43835:12;;-1:-1:-1;;;43835:12:0;;;;43827:52;;;;-1:-1:-1;;;43827:52:0;;13659:2:1;43827:52:0;;;13641:21:1;13698:2;13678:18;;;13671:30;13737:29;13717:18;;;13710:57;13784:18;;43827:52:0;13457:351:1;43827:52:0;43907:1;43898:6;:10;:41;;;;;43922:17;;43912:6;:27;;43898:41;43890:99;;;;-1:-1:-1;;;43890:99:0;;14015:2:1;43890:99:0;;;13997:21:1;14054:2;14034:18;;;14027:30;14093:34;14073:18;;;14066:62;-1:-1:-1;;;14144:18:1;;;14137:43;14197:19;;43890:99:0;13813:409:1;43890:99:0;44040:9;;44030:6;44008:19;44020:6;;40859:7;40886:16;;;:12;:16;;;;;;;40797:113;44008:19;:28;;;;:::i;:::-;:41;;44000:87;;;;-1:-1:-1;;;44000:87:0;;14562:2:1;44000:87:0;;;14544:21:1;;;14581:18;;;14574:30;14640:34;14620:18;;;14613:62;14692:18;;44000:87:0;14360:356:1;44000:87:0;44119:5;;44106:9;:18;;44098:61;;;;-1:-1:-1;;;44098:61:0;;14923:2:1;44098:61:0;;;14905:21:1;14962:2;14942:18;;;14935:30;15001:32;14981:18;;;14974:60;15051:18;;44098:61:0;14721:354:1;44098:61:0;44172:37;44178:10;44190:6;;44198;44172:37;;;;;;;;;;;;:5;:37::i;:::-;-1:-1:-1;44230:10:0;44220:21;;;;:9;:21;;;;;44244:1;44220:25;;43592:661::o;42735:103::-;42779:13;42816:14;42809:21;;;;;:::i;25992:406::-;-1:-1:-1;;;;;26200:20:0;;792:10;26200:20;;:60;;-1:-1:-1;26224:36:0;26241:4;792:10;25752:168;:::i;26224:36::-;26178:156;;;;-1:-1:-1;;;26178:156:0;;;;;;;:::i;:::-;26345:45;26363:4;26369:2;26373;26377:6;26385:4;26345:17;:45::i;3067:201::-;2047:13;:11;:13::i;:::-;-1:-1:-1;;;;;3156:22:0;::::1;3148:73;;;::::0;-1:-1:-1;;;3148:73:0;;15282:2:1;3148:73:0::1;::::0;::::1;15264:21:1::0;15321:2;15301:18;;;15294:30;15360:34;15340:18;;;15333:62;-1:-1:-1;;;15411:18:1;;;15404:36;15457:19;;3148:73:0::1;15080:402:1::0;3148:73:0::1;3232:28;3251:8;3232:18;:28::i;2326:132::-:0;2234:6;;-1:-1:-1;;;;;2234:6:0;792:10;2390:23;2382:68;;;;-1:-1:-1;;;2382:68:0;;15689:2:1;2382:68:0;;;15671:21:1;;;15708:18;;;15701:30;15767:34;15747:18;;;15740:62;15819:18;;2382:68:0;15487:356:1;30699:88:0;30766:13;;;;:4;;:13;;;;;:::i;28709:1146::-;28936:7;:14;28922:3;:10;:28;28914:81;;;;-1:-1:-1;;;28914:81:0;;16050:2:1;28914:81:0;;;16032:21:1;16089:2;16069:18;;;16062:30;16128:34;16108:18;;;16101:62;-1:-1:-1;;;16179:18:1;;;16172:38;16227:19;;28914:81:0;15848:404:1;28914:81:0;-1:-1:-1;;;;;29014:16:0;;29006:66;;;;-1:-1:-1;;;29006:66:0;;;;;;;:::i;:::-;792:10;29129:60;792:10;29160:4;29166:2;29170:3;29175:7;29184:4;29129:20;:60::i;:::-;29207:9;29202:421;29226:3;:10;29222:1;:14;29202:421;;;29258:10;29271:3;29275:1;29271:6;;;;;;;;:::i;:::-;;;;;;;29258:19;;29292:14;29309:7;29317:1;29309:10;;;;;;;;:::i;:::-;;;;;;;;;;;;29336:19;29358:13;;;;;;;;;;-1:-1:-1;;;;;29358:19:0;;;;;;;;;;;;29309:10;;-1:-1:-1;29400:21:0;;;;29392:76;;;;-1:-1:-1;;;29392:76:0;;;;;;;:::i;:::-;29512:9;:13;;;;;;;;;;;-1:-1:-1;;;;;29512:19:0;;;;;;;;;;29534:20;;;29512:42;;29584:17;;;;;;;:27;;29534:20;;29512:9;29584:27;;29534:20;;29584:27;:::i;:::-;;;;;;;;29243:380;;;29238:3;;;;:::i;:::-;;;29202:421;;;;29670:2;-1:-1:-1;;;;;29640:47:0;29664:4;-1:-1:-1;;;;;29640:47:0;29654:8;-1:-1:-1;;;;;29640:47:0;;29674:3;29679:7;29640:47;;;;;;;:::i;:::-;;;;;;;;29772:75;29808:8;29818:4;29824:2;29828:3;29833:7;29842:4;29772:35;:75::i;:::-;28903:952;28709:1146;;;;;:::o;31173:729::-;-1:-1:-1;;;;;31326:16:0;;31318:62;;;;-1:-1:-1;;;31318:62:0;;17746:2:1;31318:62:0;;;17728:21:1;17785:2;17765:18;;;17758:30;17824:34;17804:18;;;17797:62;-1:-1:-1;;;17875:18:1;;;17868:31;17916:19;;31318:62:0;17544:397:1;31318:62:0;792:10;31393:16;31458:21;31476:2;31458:17;:21::i;:::-;31435:44;;31490:24;31517:25;31535:6;31517:17;:25::i;:::-;31490:52;;31555:66;31576:8;31594:1;31598:2;31602:3;31607:7;31616:4;31555:20;:66::i;:::-;31634:9;:13;;;;;;;;;;;-1:-1:-1;;;;;31634:17:0;;;;;;;;;:27;;31655:6;;31634:9;:27;;31655:6;;31634:27;:::i;:::-;;;;-1:-1:-1;;31677:52:0;;;18120:25:1;;;18176:2;18161:18;;18154:34;;;-1:-1:-1;;;;;31677:52:0;;;;31710:1;;31677:52;;;;;;18093:18:1;31677:52:0;;;;;;;31820:74;31851:8;31869:1;31873:2;31877;31881:6;31889:4;31820:30;:74::i;:::-;31307:595;;;31173:729;;;;:::o;3428:191::-;3521:6;;;-1:-1:-1;;;;;3538:17:0;;;-1:-1:-1;;;;;;3538:17:0;;;;;;;3571:40;;3521:6;;;3538:17;3521:6;;3571:40;;3502:16;;3571:40;3491:128;3428:191;:::o;35586:331::-;35741:8;-1:-1:-1;;;;;35732:17:0;:5;-1:-1:-1;;;;;35732:17:0;;;35724:71;;;;-1:-1:-1;;;35724:71:0;;18401:2:1;35724:71:0;;;18383:21:1;18440:2;18420:18;;;18413:30;18479:34;18459:18;;;18452:62;-1:-1:-1;;;18530:18:1;;;18523:39;18579:19;;35724:71:0;18199:405:1;35724:71:0;-1:-1:-1;;;;;35806:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35806:46:0;;;;;;;;;;35868:41;;1159::1;;;35868::0;;1132:18:1;35868:41:0;;;;;;;35586:331;;;:::o;27377:974::-;-1:-1:-1;;;;;27565:16:0;;27557:66;;;;-1:-1:-1;;;27557:66:0;;;;;;;:::i;:::-;792:10;27636:16;27701:21;27719:2;27701:17;:21::i;:::-;27678:44;;27733:24;27760:25;27778:6;27760:17;:25::i;:::-;27733:52;;27798:60;27819:8;27829:4;27835:2;27839:3;27844:7;27853:4;27798:20;:60::i;:::-;27871:19;27893:13;;;;;;;;;;;-1:-1:-1;;;;;27893:19:0;;;;;;;;;;27931:21;;;;27923:76;;;;-1:-1:-1;;;27923:76:0;;;;;;;:::i;:::-;28035:9;:13;;;;;;;;;;;-1:-1:-1;;;;;28035:19:0;;;;;;;;;;28057:20;;;28035:42;;28099:17;;;;;;;:27;;28057:20;;28035:9;28099:27;;28057:20;;28099:27;:::i;:::-;;;;-1:-1:-1;;28144:46:0;;;18120:25:1;;;18176:2;18161:18;;18154:34;;;-1:-1:-1;;;;;28144:46:0;;;;;;;;;;;;;;18093:18:1;28144:46:0;;;;;;;28275:68;28306:8;28316:4;28322:2;28326;28330:6;28338:4;28275:30;:68::i;:::-;27546:805;;;;27377:974;;;;;:::o;41205:931::-;-1:-1:-1;;;;;41527:18:0;;41523:160;;41567:9;41562:110;41586:3;:10;41582:1;:14;41562:110;;;41646:7;41654:1;41646:10;;;;;;;;:::i;:::-;;;;;;;41622:12;:20;41635:3;41639:1;41635:6;;;;;;;;:::i;:::-;;;;;;;41622:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;41598:3:0;;-1:-1:-1;41598:3:0;;:::i;:::-;;;41562:110;;;;41523:160;-1:-1:-1;;;;;41699:16:0;;41695:434;;41737:9;41732:386;41756:3;:10;41752:1;:14;41732:386;;;41792:10;41805:3;41809:1;41805:6;;;;;;;;:::i;:::-;;;;;;;41792:19;;41830:14;41847:7;41855:1;41847:10;;;;;;;;:::i;:::-;;;;;;;41830:27;;41876:14;41893:12;:16;41906:2;41893:16;;;;;;;;;;;;41876:33;;41946:6;41936;:16;;41928:69;;;;-1:-1:-1;;;41928:69:0;;18811:2:1;41928:69:0;;;18793:21:1;18850:2;18830:18;;;18823:30;18889:34;18869:18;;;18862:62;-1:-1:-1;;;18940:18:1;;;18933:38;18988:19;;41928:69:0;18609:404:1;41928:69:0;42049:16;;;;:12;:16;;;;;;42068:15;;42049:34;;41768:3;;;:::i;:::-;;;41732:386;;39031:813;-1:-1:-1;;;;;39271:13:0;;5154:19;:23;39267:570;;39307:79;;-1:-1:-1;;;39307:79:0;;-1:-1:-1;;;;;39307:43:0;;;;;:79;;39351:8;;39361:4;;39367:3;;39372:7;;39381:4;;39307:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39307:79:0;;;;;;;;-1:-1:-1;;39307:79:0;;;;;;;;;;;;:::i;:::-;;;39303:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;39699:6;39692:14;;-1:-1:-1;;;39692:14:0;;;;;;;;:::i;39303:523::-;;;39748:62;;-1:-1:-1;;;39748:62:0;;21166:2:1;39748:62:0;;;21148:21:1;21205:2;21185:18;;;21178:30;21244:34;21224:18;;;21217:62;-1:-1:-1;;;21295:18:1;;;21288:50;21355:19;;39748:62:0;20964:416:1;39303:523:0;-1:-1:-1;;;;;;39468:60:0;;-1:-1:-1;;;39468:60:0;39464:159;;39553:50;;-1:-1:-1;;;39553:50:0;;;;;;;:::i;39852:198::-;39972:16;;;39986:1;39972:16;;;;;;;;;39918;;39947:22;;39972:16;;;;;;;;;;;;-1:-1:-1;39972:16:0;39947:41;;40010:7;39999:5;40005:1;39999:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;40037:5;39852:198;-1:-1:-1;;39852:198:0:o;38279:744::-;-1:-1:-1;;;;;38494:13:0;;5154:19;:23;38490:526;;38530:72;;-1:-1:-1;;;38530:72:0;;-1:-1:-1;;;;;38530:38:0;;;;;:72;;38569:8;;38579:4;;38585:2;;38589:6;;38597:4;;38530:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38530:72:0;;;;;;;;-1:-1:-1;;38530:72:0;;;;;;;;;;;;:::i;:::-;;;38526:479;;;;:::i;:::-;-1:-1:-1;;;;;;38652:55:0;;-1:-1:-1;;;38652:55:0;38648:154;;38732:50;;-1:-1:-1;;;38732:50:0;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:254::-;260:6;268;321:2;309:9;300:7;296:23;292:32;289:52;;;337:1;334;327:12;289:52;360:29;379:9;360:29;:::i;:::-;350:39;436:2;421:18;;;;408:32;;-1:-1:-1;;;192:254:1:o;633:131::-;-1:-1:-1;;;;;;707:32:1;;697:43;;687:71;;754:1;751;744:12;769:245;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;935:9;922:23;954:30;978:5;954:30;:::i;:::-;1003:5;769:245;-1:-1:-1;;;769:245:1:o;1211:127::-;1272:10;1267:3;1263:20;1260:1;1253:31;1303:4;1300:1;1293:15;1327:4;1324:1;1317:15;1343:249;1453:2;1434:13;;-1:-1:-1;;1430:27:1;1418:40;;1488:18;1473:34;;1509:22;;;1470:62;1467:88;;;1535:18;;:::i;:::-;1571:2;1564:22;-1:-1:-1;;1343:249:1:o;1597:469::-;1662:5;1696:18;1688:6;1685:30;1682:56;;;1718:18;;:::i;:::-;1767:2;1761:9;1779:69;1836:2;1815:15;;-1:-1:-1;;1811:29:1;1842:4;1807:40;1761:9;1779:69;:::i;:::-;1866:6;1857:15;;1896:6;1888;1881:22;1936:3;1927:6;1922:3;1918:16;1915:25;1912:45;;;1953:1;1950;1943:12;1912:45;2003:6;1998:3;1991:4;1983:6;1979:17;1966:44;2058:1;2051:4;2042:6;2034;2030:19;2026:30;2019:41;;1597:469;;;;;:::o;2071:451::-;2140:6;2193:2;2181:9;2172:7;2168:23;2164:32;2161:52;;;2209:1;2206;2199:12;2161:52;2249:9;2236:23;2282:18;2274:6;2271:30;2268:50;;;2314:1;2311;2304:12;2268:50;2337:22;;2390:4;2382:13;;2378:27;-1:-1:-1;2368:55:1;;2419:1;2416;2409:12;2368:55;2442:74;2508:7;2503:2;2490:16;2485:2;2481;2477:11;2442:74;:::i;:::-;2432:84;2071:451;-1:-1:-1;;;;2071:451:1:o;2527:472::-;2569:3;2607:5;2601:12;2634:6;2629:3;2622:19;2659:1;2669:162;2683:6;2680:1;2677:13;2669:162;;;2745:4;2801:13;;;2797:22;;2791:29;2773:11;;;2769:20;;2762:59;2698:12;2669:162;;;2849:6;2846:1;2843:13;2840:87;;;2915:1;2908:4;2899:6;2894:3;2890:16;2886:27;2879:38;2840:87;-1:-1:-1;2981:2:1;2960:15;-1:-1:-1;;2956:29:1;2947:39;;;;2988:4;2943:50;;2527:472;-1:-1:-1;;2527:472:1:o;3004:220::-;3153:2;3142:9;3135:21;3116:4;3173:45;3214:2;3203:9;3199:18;3191:6;3173:45;:::i;3229:180::-;3288:6;3341:2;3329:9;3320:7;3316:23;3312:32;3309:52;;;3357:1;3354;3347:12;3309:52;-1:-1:-1;3380:23:1;;3229:180;-1:-1:-1;3229:180:1:o;3414:183::-;3474:4;3507:18;3499:6;3496:30;3493:56;;;3529:18;;:::i;:::-;-1:-1:-1;3574:1:1;3570:14;3586:4;3566:25;;3414:183::o;3602:724::-;3656:5;3709:3;3702:4;3694:6;3690:17;3686:27;3676:55;;3727:1;3724;3717:12;3676:55;3763:6;3750:20;3789:4;3812:43;3852:2;3812:43;:::i;:::-;3884:2;3878:9;3896:31;3924:2;3916:6;3896:31;:::i;:::-;3962:18;;;4054:1;4050:10;;;;4038:23;;4034:32;;;3996:15;;;;-1:-1:-1;4078:15:1;;;4075:35;;;4106:1;4103;4096:12;4075:35;4142:2;4134:6;4130:15;4154:142;4170:6;4165:3;4162:15;4154:142;;;4236:17;;4224:30;;4274:12;;;;4187;;4154:142;;;-1:-1:-1;4314:6:1;3602:724;-1:-1:-1;;;;;;3602:724:1:o;4331:221::-;4373:5;4426:3;4419:4;4411:6;4407:17;4403:27;4393:55;;4444:1;4441;4434:12;4393:55;4466:80;4542:3;4533:6;4520:20;4513:4;4505:6;4501:17;4466:80;:::i;4557:943::-;4711:6;4719;4727;4735;4743;4796:3;4784:9;4775:7;4771:23;4767:33;4764:53;;;4813:1;4810;4803:12;4764:53;4836:29;4855:9;4836:29;:::i;:::-;4826:39;;4884:38;4918:2;4907:9;4903:18;4884:38;:::i;:::-;4874:48;;4973:2;4962:9;4958:18;4945:32;4996:18;5037:2;5029:6;5026:14;5023:34;;;5053:1;5050;5043:12;5023:34;5076:61;5129:7;5120:6;5109:9;5105:22;5076:61;:::i;:::-;5066:71;;5190:2;5179:9;5175:18;5162:32;5146:48;;5219:2;5209:8;5206:16;5203:36;;;5235:1;5232;5225:12;5203:36;5258:63;5313:7;5302:8;5291:9;5287:24;5258:63;:::i;:::-;5248:73;;5374:3;5363:9;5359:19;5346:33;5330:49;;5404:2;5394:8;5391:16;5388:36;;;5420:1;5417;5410:12;5388:36;;5443:51;5486:7;5475:8;5464:9;5460:24;5443:51;:::i;:::-;5433:61;;;4557:943;;;;;;;;:::o;5505:1208::-;5623:6;5631;5684:2;5672:9;5663:7;5659:23;5655:32;5652:52;;;5700:1;5697;5690:12;5652:52;5740:9;5727:23;5769:18;5810:2;5802:6;5799:14;5796:34;;;5826:1;5823;5816:12;5796:34;5864:6;5853:9;5849:22;5839:32;;5909:7;5902:4;5898:2;5894:13;5890:27;5880:55;;5931:1;5928;5921:12;5880:55;5967:2;5954:16;5989:4;6012:43;6052:2;6012:43;:::i;:::-;6084:2;6078:9;6096:31;6124:2;6116:6;6096:31;:::i;:::-;6162:18;;;6250:1;6246:10;;;;6238:19;;6234:28;;;6196:15;;;;-1:-1:-1;6274:19:1;;;6271:39;;;6306:1;6303;6296:12;6271:39;6330:11;;;;6350:148;6366:6;6361:3;6358:15;6350:148;;;6432:23;6451:3;6432:23;:::i;:::-;6420:36;;6383:12;;;;6476;;;;6350:148;;;6517:6;-1:-1:-1;;6561:18:1;;6548:32;;-1:-1:-1;;6592:16:1;;;6589:36;;;6621:1;6618;6611:12;6589:36;;6644:63;6699:7;6688:8;6677:9;6673:24;6644:63;:::i;:::-;6634:73;;;5505:1208;;;;;:::o;6718:435::-;6771:3;6809:5;6803:12;6836:6;6831:3;6824:19;6862:4;6891:2;6886:3;6882:12;6875:19;;6928:2;6921:5;6917:14;6949:1;6959:169;6973:6;6970:1;6967:13;6959:169;;;7034:13;;7022:26;;7068:12;;;;7103:15;;;;6995:1;6988:9;6959:169;;;-1:-1:-1;7144:3:1;;6718:435;-1:-1:-1;;;;;6718:435:1:o;7158:261::-;7337:2;7326:9;7319:21;7300:4;7357:56;7409:2;7398:9;7394:18;7386:6;7357:56;:::i;7424:615::-;7510:6;7518;7571:2;7559:9;7550:7;7546:23;7542:32;7539:52;;;7587:1;7584;7577:12;7539:52;7627:9;7614:23;7656:18;7697:2;7689:6;7686:14;7683:34;;;7713:1;7710;7703:12;7683:34;7751:6;7740:9;7736:22;7726:32;;7796:7;7789:4;7785:2;7781:13;7777:27;7767:55;;7818:1;7815;7808:12;7767:55;7858:2;7845:16;7884:2;7876:6;7873:14;7870:34;;;7900:1;7897;7890:12;7870:34;7953:7;7948:2;7938:6;7935:1;7931:14;7927:2;7923:23;7919:32;7916:45;7913:65;;;7974:1;7971;7964:12;7913:65;8005:2;7997:11;;;;;8027:6;;-1:-1:-1;7424:615:1;;-1:-1:-1;;;;7424:615:1:o;8044:385::-;8130:6;8138;8146;8154;8207:3;8195:9;8186:7;8182:23;8178:33;8175:53;;;8224:1;8221;8214:12;8175:53;-1:-1:-1;;8247:23:1;;;8317:2;8302:18;;8289:32;;-1:-1:-1;8368:2:1;8353:18;;8340:32;;8419:2;8404:18;8391:32;;-1:-1:-1;8044:385:1;-1:-1:-1;8044:385:1:o;8642:186::-;8701:6;8754:2;8742:9;8733:7;8729:23;8725:32;8722:52;;;8770:1;8767;8760:12;8722:52;8793:29;8812:9;8793:29;:::i;8833:347::-;8898:6;8906;8959:2;8947:9;8938:7;8934:23;8930:32;8927:52;;;8975:1;8972;8965:12;8927:52;8998:29;9017:9;8998:29;:::i;:::-;8988:39;;9077:2;9066:9;9062:18;9049:32;9124:5;9117:13;9110:21;9103:5;9100:32;9090:60;;9146:1;9143;9136:12;9090:60;9169:5;9159:15;;;8833:347;;;;;:::o;9185:260::-;9253:6;9261;9314:2;9302:9;9293:7;9289:23;9285:32;9282:52;;;9330:1;9327;9320:12;9282:52;9353:29;9372:9;9353:29;:::i;:::-;9343:39;;9401:38;9435:2;9424:9;9420:18;9401:38;:::i;:::-;9391:48;;9185:260;;;;;:::o;9450:606::-;9554:6;9562;9570;9578;9586;9639:3;9627:9;9618:7;9614:23;9610:33;9607:53;;;9656:1;9653;9646:12;9607:53;9679:29;9698:9;9679:29;:::i;:::-;9669:39;;9727:38;9761:2;9750:9;9746:18;9727:38;:::i;:::-;9717:48;;9812:2;9801:9;9797:18;9784:32;9774:42;;9863:2;9852:9;9848:18;9835:32;9825:42;;9918:3;9907:9;9903:19;9890:33;9946:18;9938:6;9935:30;9932:50;;;9978:1;9975;9968:12;9932:50;10001:49;10042:7;10033:6;10022:9;10018:22;10001:49;:::i;10472:380::-;10551:1;10547:12;;;;10594;;;10615:61;;10669:4;10661:6;10657:17;10647:27;;10615:61;10722:2;10714:6;10711:14;10691:18;10688:38;10685:161;;;10768:10;10763:3;10759:20;10756:1;10749:31;10803:4;10800:1;10793:15;10831:4;10828:1;10821:15;10685:161;;10472:380;;;:::o;10857:410::-;11059:2;11041:21;;;11098:2;11078:18;;;11071:30;11137:34;11132:2;11117:18;;11110:62;-1:-1:-1;;;11203:2:1;11188:18;;11181:44;11257:3;11242:19;;10857:410::o;12245:127::-;12306:10;12301:3;12297:20;12294:1;12287:31;12337:4;12334:1;12327:15;12361:4;12358:1;12351:15;12377:127;12438:10;12433:3;12429:20;12426:1;12419:31;12469:4;12466:1;12459:15;12493:4;12490:1;12483:15;12509:135;12548:3;-1:-1:-1;;12569:17:1;;12566:43;;;12589:18;;:::i;:::-;-1:-1:-1;12636:1:1;12625:13;;12509:135::o;14227:128::-;14267:3;14298:1;14294:6;14291:1;14288:13;14285:39;;;14304:18;;:::i;:::-;-1:-1:-1;14340:9:1;;14227:128::o;16257:401::-;16459:2;16441:21;;;16498:2;16478:18;;;16471:30;16537:34;16532:2;16517:18;;16510:62;-1:-1:-1;;;16603:2:1;16588:18;;16581:35;16648:3;16633:19;;16257:401::o;16663:406::-;16865:2;16847:21;;;16904:2;16884:18;;;16877:30;16943:34;16938:2;16923:18;;16916:62;-1:-1:-1;;;17009:2:1;16994:18;;16987:40;17059:3;17044:19;;16663:406::o;17074:465::-;17331:2;17320:9;17313:21;17294:4;17357:56;17409:2;17398:9;17394:18;17386:6;17357:56;:::i;:::-;17461:9;17453:6;17449:22;17444:2;17433:9;17429:18;17422:50;17489:44;17526:6;17518;17489:44;:::i;:::-;17481:52;17074:465;-1:-1:-1;;;;;17074:465:1:o;19018:827::-;-1:-1:-1;;;;;19415:15:1;;;19397:34;;19467:15;;19462:2;19447:18;;19440:43;19377:3;19514:2;19499:18;;19492:31;;;19340:4;;19546:57;;19583:19;;19575:6;19546:57;:::i;:::-;19651:9;19643:6;19639:22;19634:2;19623:9;19619:18;19612:50;19685:44;19722:6;19714;19685:44;:::i;:::-;19671:58;;19778:9;19770:6;19766:22;19760:3;19749:9;19745:19;19738:51;19806:33;19832:6;19824;19806:33;:::i;:::-;19798:41;19018:827;-1:-1:-1;;;;;;;;19018:827:1:o;19850:249::-;19919:6;19972:2;19960:9;19951:7;19947:23;19943:32;19940:52;;;19988:1;19985;19978:12;19940:52;20020:9;20014:16;20039:30;20063:5;20039:30;:::i;20104:179::-;20139:3;20181:1;20163:16;20160:23;20157:120;;;20227:1;20224;20221;20206:23;-1:-1:-1;20264:1:1;20258:8;20253:3;20249:18;20157:120;20104:179;:::o;20288:671::-;20327:3;20369:4;20351:16;20348:26;20345:39;;;20288:671;:::o;20345:39::-;20411:2;20405:9;-1:-1:-1;;20476:16:1;20472:25;;20469:1;20405:9;20448:50;20527:4;20521:11;20551:16;20586:18;20657:2;20650:4;20642:6;20638:17;20635:25;20630:2;20622:6;20619:14;20616:45;20613:58;;;20664:5;;;;;20288:671;:::o;20613:58::-;20701:6;20695:4;20691:17;20680:28;;20737:3;20731:10;20764:2;20756:6;20753:14;20750:27;;;20770:5;;;;;;20288:671;:::o;20750:27::-;20854:2;20835:16;20829:4;20825:27;20821:36;20814:4;20805:6;20800:3;20796:16;20792:27;20789:69;20786:82;;;20861:5;;;;;;20288:671;:::o;20786:82::-;20877:57;20928:4;20919:6;20911;20907:19;20903:30;20897:4;20877:57;:::i;:::-;-1:-1:-1;20950:3:1;;20288:671;-1:-1:-1;;;;;20288:671:1:o;21385:404::-;21587:2;21569:21;;;21626:2;21606:18;;;21599:30;21665:34;21660:2;21645:18;;21638:62;-1:-1:-1;;;21731:2:1;21716:18;;21709:38;21779:3;21764:19;;21385:404::o;21794:561::-;-1:-1:-1;;;;;22091:15:1;;;22073:34;;22143:15;;22138:2;22123:18;;22116:43;22190:2;22175:18;;22168:34;;;22233:2;22218:18;;22211:34;;;22053:3;22276;22261:19;;22254:32;;;22016:4;;22303:46;;22329:19;;22321:6;22303:46;:::i;:::-;22295:54;21794:561;-1:-1:-1;;;;;;;21794:561:1:o

Swarm Source

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