ETH Price: $3,257.79 (+2.74%)
Gas: 2 Gwei

Token

 

Overview

Max Total Supply

500

Holders

433

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xef7158e8fad9857e767f9335f0b54519f8526375
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:
PhatPandazGasPass

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 10 of 10: PhatPandazGasPass.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

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

contract PhatPandazGasPass is ERC1155, Ownable {

    uint public passesMinted = 50; // 50 minted for giveaways
    uint public constant gasPassLimit = 500;
    bool public isActive = false;

    constructor() ERC1155("ipfs://QmT5fno7nuyKTTVR6XPMT6JeUFQFycZj14Jtk3NxD35V6s") {
        _mint(msg.sender, 1, 50, "");
    }

    event MintedGasPass(address _to, uint passesMinted);

    modifier checkMint(address _to) {
        require(isActive, "Sale not active.");
        require(block.timestamp >= 1641682800, "Sale not started.");
        require(passesMinted < gasPassLimit, "Sold out.");
        require(msg.value == .05 ether, "Incorrect ether sent.");
        require(balanceOf(_to, 1) < 1, "One per wallet.");
        _;
    }

    function toggleActive() external onlyOwner {
        isActive = !isActive;
    }

    function withdraw() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }
    
    function mint() public payable checkMint(msg.sender) {
        address _to = msg.sender;
        passesMinted++;
        _mint(_to, 1, 1, "");
        emit MintedGasPass(_to, passesMinted);
    }
}

File 1 of 10: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 2 of 10: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 3 of 10: ERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

        return array;
    }
}

File 4 of 10: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "IERC165.sol";

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

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

pragma solidity ^0.8.0;

import "IERC165.sol";

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

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

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

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

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

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

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

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

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

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

File 6 of 10: IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "IERC1155.sol";

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

File 7 of 10: IERC1155Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "IERC165.sol";

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

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

File 8 of 10: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 9 of 10: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "Context.sol";

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"passesMinted","type":"uint256"}],"name":"MintedGasPass","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gasPassLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"passesMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleActive","outputs":[],"stateMutability":"nonpayable","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260326004556005805460ff191690553480156200002057600080fd5b50604051806060016040528060358152602001620021b36035913962000046816200007d565b50620000523362000096565b62000077336001603260405180602001604052806000815250620000e860201b60201c565b62000730565b8051620000929060029060208401906200044a565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0384166200014e5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084015b60405180910390fd5b336200017481600087620001628862000208565b6200016d8862000208565b5050505050565b6000848152602081815260408083206001600160a01b038916845290915281208054859290620001a6908490620005cf565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46200016d816000878787876200025e565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106200024557620002456200066e565b602090810291909101015292915050565b505050505050565b6200027d846001600160a01b03166200044460201b62000b241760201c565b15620002565760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190620002b9908990899088908890889060040162000573565b602060405180830381600087803b158015620002d457600080fd5b505af192505050801562000307575060408051601f3d908101601f191682019092526200030491810190620004f0565b60015b620003c8576200031662000684565b806308c379a014156200035757506200032e620006a1565b806200033b575062000359565b8060405162461bcd60e51b8152600401620001459190620005ba565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e746572000000000000000000000000606482015260840162000145565b6001600160e01b0319811663f23a6e6160e01b146200043b5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b606482015260840162000145565b50505050505050565b3b151590565b8280546200045890620005f6565b90600052602060002090601f0160209004810192826200047c5760008555620004c7565b82601f106200049757805160ff1916838001178555620004c7565b82800160010185558215620004c7579182015b82811115620004c7578251825591602001919060010190620004aa565b50620004d5929150620004d9565b5090565b5b80821115620004d55760008155600101620004da565b6000602082840312156200050357600080fd5b81516001600160e01b0319811681146200051c57600080fd5b9392505050565b6000815180845260005b818110156200054b576020818501810151868301820152016200052d565b818111156200055e576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090620005af9083018462000523565b979650505050505050565b6020815260006200051c602083018462000523565b60008219821115620005f157634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200060b57607f821691505b602082108114156200062d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f191681016001600160401b03811182821017156200066757634e487b7160e01b600052604160045260246000fd5b6040525050565b634e487b7160e01b600052603260045260246000fd5b600060033d11156200069e5760046000803e5060005160e01c5b90565b600060443d1015620006b05790565b6040516003193d81016004833e81513d6001600160401b038083116024840183101715620006e057505050505090565b8285019150815181811115620006f95750505050505090565b843d8701016020828501011115620007145750505050505090565b620007256020828601018762000633565b509095945050505050565b611a7380620007406000396000f3fe6080604052600436106100fd5760003560e01c80633ccfd60b11610095578063a22cb46511610064578063a22cb46514610280578063ad24eb4f146102a0578063e985e9c5146102b6578063f242432a146102ff578063f2fde38b1461031f57600080fd5b80633ccfd60b146102015780634e1273f414610216578063715018a6146102435780638da5cb5b1461025857600080fd5b80631249c58b116100d15780631249c58b146101a857806322f3e2d4146101b257806329c68dc1146101cc5780632eb2c2d6146101e157600080fd5b8062fdd58e1461010257806301ffc9a7146101355780630e89341c1461016557806311299ad314610192575b600080fd5b34801561010e57600080fd5b5061012261011d3660046114a7565b61033f565b6040519081526020015b60405180910390f35b34801561014157600080fd5b506101556101503660046115a2565b6103d6565b604051901515815260200161012c565b34801561017157600080fd5b506101856101803660046115dc565b610428565b60405161012c9190611761565b34801561019e57600080fd5b506101226101f481565b6101b06104bc565b005b3480156101be57600080fd5b506005546101559060ff1681565b3480156101d857600080fd5b506101b06106a0565b3480156101ed57600080fd5b506101b06101fc36600461135c565b6106de565b34801561020d57600080fd5b506101b0610775565b34801561022257600080fd5b506102366102313660046114d1565b6107ce565b60405161012c9190611720565b34801561024f57600080fd5b506101b06108f8565b34801561026457600080fd5b506003546040516001600160a01b03909116815260200161012c565b34801561028c57600080fd5b506101b061029b36600461146b565b61092e565b3480156102ac57600080fd5b5061012260045481565b3480156102c257600080fd5b506101556102d1366004611329565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561030b57600080fd5b506101b061031a366004611406565b610a05565b34801561032b57600080fd5b506101b061033a366004611307565b610a8c565b60006001600160a01b0383166103b05760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061040757506001600160e01b031982166303a24d0760e21b145b8061042257506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610437906118bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610463906118bc565b80156104b05780601f10610485576101008083540402835291602001916104b0565b820191906000526020600020905b81548152906001019060200180831161049357829003601f168201915b50505050509050919050565b600554339060ff166105035760405162461bcd60e51b815260206004820152601060248201526f29b0b632903737ba1030b1ba34bb329760811b60448201526064016103a7565b6361da177042101561054b5760405162461bcd60e51b815260206004820152601160248201527029b0b632903737ba1039ba30b93a32b21760791b60448201526064016103a7565b6101f46004541061058a5760405162461bcd60e51b815260206004820152600960248201526829b7b6321037baba1760b91b60448201526064016103a7565b3466b1a2bc2ec50000146105d85760405162461bcd60e51b815260206004820152601560248201527424b731b7b93932b1ba1032ba3432b91039b2b73a1760591b60448201526064016103a7565b60016105e582600161033f565b106106245760405162461bcd60e51b815260206004820152600f60248201526e27b732903832b9103bb0b63632ba1760891b60448201526064016103a7565b600480543391600061063583611924565b91905055506106568160018060405180602001604052806000815250610b2a565b600454604080516001600160a01b038416815260208101929092527f5a4410737e28d1bcdbe5cb3fa34a96216b15a9eac6663bd9f2c1599994d24c7f910160405180910390a15050565b6003546001600160a01b031633146106ca5760405162461bcd60e51b81526004016103a79061184b565b6005805460ff19811660ff90911615179055565b6001600160a01b0385163314806106fa57506106fa85336102d1565b6107615760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016103a7565b61076e8585858585610c34565b5050505050565b6003546001600160a01b0316331461079f5760405162461bcd60e51b81526004016103a79061184b565b60405133904780156108fc02916000818181858888f193505050501580156107cb573d6000803e3d6000fd5b50565b606081518351146108335760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016103a7565b6000835167ffffffffffffffff81111561084f5761084f61196b565b604051908082528060200260200182016040528015610878578160200160208202803683370190505b50905060005b84518110156108f0576108c385828151811061089c5761089c611955565b60200260200101518583815181106108b6576108b6611955565b602002602001015161033f565b8282815181106108d5576108d5611955565b60209081029190910101526108e981611924565b905061087e565b509392505050565b6003546001600160a01b031633146109225760405162461bcd60e51b81526004016103a79061184b565b61092c6000610e11565b565b336001600160a01b03831614156109995760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016103a7565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6001600160a01b038516331480610a215750610a2185336102d1565b610a7f5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b60648201526084016103a7565b61076e8585858585610e63565b6003546001600160a01b03163314610ab65760405162461bcd60e51b81526004016103a79061184b565b6001600160a01b038116610b1b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103a7565b6107cb81610e11565b3b151590565b6001600160a01b038416610b8a5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016103a7565b33610ba481600087610b9b88610f80565b61076e88610f80565b6000848152602081815260408083206001600160a01b038916845290915281208054859290610bd49084906118a4565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461076e81600087878787610fcb565b8151835114610c965760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b60648201526084016103a7565b6001600160a01b038416610cbc5760405162461bcd60e51b81526004016103a7906117bc565b3360005b8451811015610da3576000858281518110610cdd57610cdd611955565b602002602001015190506000858381518110610cfb57610cfb611955565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610d4b5760405162461bcd60e51b81526004016103a790611801565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610d889084906118a4565b9250508190555050505080610d9c90611924565b9050610cc0565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610df3929190611733565b60405180910390a4610e09818787878787611136565b505050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038416610e895760405162461bcd60e51b81526004016103a7906117bc565b33610e99818787610b9b88610f80565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015610eda5760405162461bcd60e51b81526004016103a790611801565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290610f179084906118a4565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610f77828888888888610fcb565b50505050505050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110610fba57610fba611955565b602090810291909101015292915050565b6001600160a01b0384163b15610e095760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061100f90899089908890889088906004016116db565b602060405180830381600087803b15801561102957600080fd5b505af1925050508015611059575060408051601f3d908101601f19168201909252611056918101906115bf565b60015b61110657611065611981565b806308c379a0141561109f575061107a61199d565b8061108557506110a1565b8060405162461bcd60e51b81526004016103a79190611761565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016103a7565b6001600160e01b0319811663f23a6e6160e01b14610f775760405162461bcd60e51b81526004016103a790611774565b6001600160a01b0384163b15610e095760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061117a908990899088908890889060040161167d565b602060405180830381600087803b15801561119457600080fd5b505af19250505080156111c4575060408051601f3d908101601f191682019092526111c1918101906115bf565b60015b6111d057611065611981565b6001600160e01b0319811663bc197c8160e01b14610f775760405162461bcd60e51b81526004016103a790611774565b80356001600160a01b038116811461121757600080fd5b919050565b600082601f83011261122d57600080fd5b8135602061123a82611880565b60405161124782826118f7565b8381528281019150858301600585901b8701840188101561126757600080fd5b60005b858110156112865781358452928401929084019060010161126a565b5090979650505050505050565b600082601f8301126112a457600080fd5b813567ffffffffffffffff8111156112be576112be61196b565b6040516112d5601f8301601f1916602001826118f7565b8181528460208386010111156112ea57600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561131957600080fd5b61132282611200565b9392505050565b6000806040838503121561133c57600080fd5b61134583611200565b915061135360208401611200565b90509250929050565b600080600080600060a0868803121561137457600080fd5b61137d86611200565b945061138b60208701611200565b9350604086013567ffffffffffffffff808211156113a857600080fd5b6113b489838a0161121c565b945060608801359150808211156113ca57600080fd5b6113d689838a0161121c565b935060808801359150808211156113ec57600080fd5b506113f988828901611293565b9150509295509295909350565b600080600080600060a0868803121561141e57600080fd5b61142786611200565b945061143560208701611200565b93506040860135925060608601359150608086013567ffffffffffffffff81111561145f57600080fd5b6113f988828901611293565b6000806040838503121561147e57600080fd5b61148783611200565b91506020830135801515811461149c57600080fd5b809150509250929050565b600080604083850312156114ba57600080fd5b6114c383611200565b946020939093013593505050565b600080604083850312156114e457600080fd5b823567ffffffffffffffff808211156114fc57600080fd5b818501915085601f83011261151057600080fd5b8135602061151d82611880565b60405161152a82826118f7565b8381528281019150858301600585901b870184018b101561154a57600080fd5b600096505b848710156115745761156081611200565b83526001969096019591830191830161154f565b509650508601359250508082111561158b57600080fd5b506115988582860161121c565b9150509250929050565b6000602082840312156115b457600080fd5b813561132281611a27565b6000602082840312156115d157600080fd5b815161132281611a27565b6000602082840312156115ee57600080fd5b5035919050565b600081518084526020808501945080840160005b8381101561162557815187529582019590820190600101611609565b509495945050505050565b6000815180845260005b818110156116565760208185018101518683018201520161163a565b81811115611668576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0386811682528516602082015260a0604082018190526000906116a9908301866115f5565b82810360608401526116bb81866115f5565b905082810360808401526116cf8185611630565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061171590830184611630565b979650505050505050565b60208152600061132260208301846115f5565b60408152600061174660408301856115f5565b828103602084015261175881856115f5565b95945050505050565b6020815260006113226020830184611630565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff82111561189a5761189a61196b565b5060051b60200190565b600082198211156118b7576118b761193f565b500190565b600181811c908216806118d057607f821691505b602082108114156118f157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff8111828210171561191d5761191d61196b565b6040525050565b60006000198214156119385761193861193f565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d111561199a5760046000803e5060005160e01c5b90565b600060443d10156119ab5790565b6040516003193d81016004833e81513d67ffffffffffffffff81602484011181841117156119db57505050505090565b82850191508151818111156119f35750505050505090565b843d8701016020828501011115611a0d5750505050505090565b611a1c602082860101876118f7565b509095945050505050565b6001600160e01b0319811681146107cb57600080fdfea2646970667358221220cf057e46919ed96188c9ab683fcacce4553d44d03df6edf1e2d4cb405972839664736f6c63430008070033697066733a2f2f516d5435666e6f376e75794b545456523658504d54364a655546514679635a6a31344a746b334e78443335563673

Deployed Bytecode

0x6080604052600436106100fd5760003560e01c80633ccfd60b11610095578063a22cb46511610064578063a22cb46514610280578063ad24eb4f146102a0578063e985e9c5146102b6578063f242432a146102ff578063f2fde38b1461031f57600080fd5b80633ccfd60b146102015780634e1273f414610216578063715018a6146102435780638da5cb5b1461025857600080fd5b80631249c58b116100d15780631249c58b146101a857806322f3e2d4146101b257806329c68dc1146101cc5780632eb2c2d6146101e157600080fd5b8062fdd58e1461010257806301ffc9a7146101355780630e89341c1461016557806311299ad314610192575b600080fd5b34801561010e57600080fd5b5061012261011d3660046114a7565b61033f565b6040519081526020015b60405180910390f35b34801561014157600080fd5b506101556101503660046115a2565b6103d6565b604051901515815260200161012c565b34801561017157600080fd5b506101856101803660046115dc565b610428565b60405161012c9190611761565b34801561019e57600080fd5b506101226101f481565b6101b06104bc565b005b3480156101be57600080fd5b506005546101559060ff1681565b3480156101d857600080fd5b506101b06106a0565b3480156101ed57600080fd5b506101b06101fc36600461135c565b6106de565b34801561020d57600080fd5b506101b0610775565b34801561022257600080fd5b506102366102313660046114d1565b6107ce565b60405161012c9190611720565b34801561024f57600080fd5b506101b06108f8565b34801561026457600080fd5b506003546040516001600160a01b03909116815260200161012c565b34801561028c57600080fd5b506101b061029b36600461146b565b61092e565b3480156102ac57600080fd5b5061012260045481565b3480156102c257600080fd5b506101556102d1366004611329565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561030b57600080fd5b506101b061031a366004611406565b610a05565b34801561032b57600080fd5b506101b061033a366004611307565b610a8c565b60006001600160a01b0383166103b05760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061040757506001600160e01b031982166303a24d0760e21b145b8061042257506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610437906118bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610463906118bc565b80156104b05780601f10610485576101008083540402835291602001916104b0565b820191906000526020600020905b81548152906001019060200180831161049357829003601f168201915b50505050509050919050565b600554339060ff166105035760405162461bcd60e51b815260206004820152601060248201526f29b0b632903737ba1030b1ba34bb329760811b60448201526064016103a7565b6361da177042101561054b5760405162461bcd60e51b815260206004820152601160248201527029b0b632903737ba1039ba30b93a32b21760791b60448201526064016103a7565b6101f46004541061058a5760405162461bcd60e51b815260206004820152600960248201526829b7b6321037baba1760b91b60448201526064016103a7565b3466b1a2bc2ec50000146105d85760405162461bcd60e51b815260206004820152601560248201527424b731b7b93932b1ba1032ba3432b91039b2b73a1760591b60448201526064016103a7565b60016105e582600161033f565b106106245760405162461bcd60e51b815260206004820152600f60248201526e27b732903832b9103bb0b63632ba1760891b60448201526064016103a7565b600480543391600061063583611924565b91905055506106568160018060405180602001604052806000815250610b2a565b600454604080516001600160a01b038416815260208101929092527f5a4410737e28d1bcdbe5cb3fa34a96216b15a9eac6663bd9f2c1599994d24c7f910160405180910390a15050565b6003546001600160a01b031633146106ca5760405162461bcd60e51b81526004016103a79061184b565b6005805460ff19811660ff90911615179055565b6001600160a01b0385163314806106fa57506106fa85336102d1565b6107615760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016103a7565b61076e8585858585610c34565b5050505050565b6003546001600160a01b0316331461079f5760405162461bcd60e51b81526004016103a79061184b565b60405133904780156108fc02916000818181858888f193505050501580156107cb573d6000803e3d6000fd5b50565b606081518351146108335760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016103a7565b6000835167ffffffffffffffff81111561084f5761084f61196b565b604051908082528060200260200182016040528015610878578160200160208202803683370190505b50905060005b84518110156108f0576108c385828151811061089c5761089c611955565b60200260200101518583815181106108b6576108b6611955565b602002602001015161033f565b8282815181106108d5576108d5611955565b60209081029190910101526108e981611924565b905061087e565b509392505050565b6003546001600160a01b031633146109225760405162461bcd60e51b81526004016103a79061184b565b61092c6000610e11565b565b336001600160a01b03831614156109995760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016103a7565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6001600160a01b038516331480610a215750610a2185336102d1565b610a7f5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b60648201526084016103a7565b61076e8585858585610e63565b6003546001600160a01b03163314610ab65760405162461bcd60e51b81526004016103a79061184b565b6001600160a01b038116610b1b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103a7565b6107cb81610e11565b3b151590565b6001600160a01b038416610b8a5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016103a7565b33610ba481600087610b9b88610f80565b61076e88610f80565b6000848152602081815260408083206001600160a01b038916845290915281208054859290610bd49084906118a4565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461076e81600087878787610fcb565b8151835114610c965760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b60648201526084016103a7565b6001600160a01b038416610cbc5760405162461bcd60e51b81526004016103a7906117bc565b3360005b8451811015610da3576000858281518110610cdd57610cdd611955565b602002602001015190506000858381518110610cfb57610cfb611955565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610d4b5760405162461bcd60e51b81526004016103a790611801565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610d889084906118a4565b9250508190555050505080610d9c90611924565b9050610cc0565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610df3929190611733565b60405180910390a4610e09818787878787611136565b505050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038416610e895760405162461bcd60e51b81526004016103a7906117bc565b33610e99818787610b9b88610f80565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015610eda5760405162461bcd60e51b81526004016103a790611801565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290610f179084906118a4565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610f77828888888888610fcb565b50505050505050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110610fba57610fba611955565b602090810291909101015292915050565b6001600160a01b0384163b15610e095760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061100f90899089908890889088906004016116db565b602060405180830381600087803b15801561102957600080fd5b505af1925050508015611059575060408051601f3d908101601f19168201909252611056918101906115bf565b60015b61110657611065611981565b806308c379a0141561109f575061107a61199d565b8061108557506110a1565b8060405162461bcd60e51b81526004016103a79190611761565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016103a7565b6001600160e01b0319811663f23a6e6160e01b14610f775760405162461bcd60e51b81526004016103a790611774565b6001600160a01b0384163b15610e095760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061117a908990899088908890889060040161167d565b602060405180830381600087803b15801561119457600080fd5b505af19250505080156111c4575060408051601f3d908101601f191682019092526111c1918101906115bf565b60015b6111d057611065611981565b6001600160e01b0319811663bc197c8160e01b14610f775760405162461bcd60e51b81526004016103a790611774565b80356001600160a01b038116811461121757600080fd5b919050565b600082601f83011261122d57600080fd5b8135602061123a82611880565b60405161124782826118f7565b8381528281019150858301600585901b8701840188101561126757600080fd5b60005b858110156112865781358452928401929084019060010161126a565b5090979650505050505050565b600082601f8301126112a457600080fd5b813567ffffffffffffffff8111156112be576112be61196b565b6040516112d5601f8301601f1916602001826118f7565b8181528460208386010111156112ea57600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561131957600080fd5b61132282611200565b9392505050565b6000806040838503121561133c57600080fd5b61134583611200565b915061135360208401611200565b90509250929050565b600080600080600060a0868803121561137457600080fd5b61137d86611200565b945061138b60208701611200565b9350604086013567ffffffffffffffff808211156113a857600080fd5b6113b489838a0161121c565b945060608801359150808211156113ca57600080fd5b6113d689838a0161121c565b935060808801359150808211156113ec57600080fd5b506113f988828901611293565b9150509295509295909350565b600080600080600060a0868803121561141e57600080fd5b61142786611200565b945061143560208701611200565b93506040860135925060608601359150608086013567ffffffffffffffff81111561145f57600080fd5b6113f988828901611293565b6000806040838503121561147e57600080fd5b61148783611200565b91506020830135801515811461149c57600080fd5b809150509250929050565b600080604083850312156114ba57600080fd5b6114c383611200565b946020939093013593505050565b600080604083850312156114e457600080fd5b823567ffffffffffffffff808211156114fc57600080fd5b818501915085601f83011261151057600080fd5b8135602061151d82611880565b60405161152a82826118f7565b8381528281019150858301600585901b870184018b101561154a57600080fd5b600096505b848710156115745761156081611200565b83526001969096019591830191830161154f565b509650508601359250508082111561158b57600080fd5b506115988582860161121c565b9150509250929050565b6000602082840312156115b457600080fd5b813561132281611a27565b6000602082840312156115d157600080fd5b815161132281611a27565b6000602082840312156115ee57600080fd5b5035919050565b600081518084526020808501945080840160005b8381101561162557815187529582019590820190600101611609565b509495945050505050565b6000815180845260005b818110156116565760208185018101518683018201520161163a565b81811115611668576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0386811682528516602082015260a0604082018190526000906116a9908301866115f5565b82810360608401526116bb81866115f5565b905082810360808401526116cf8185611630565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061171590830184611630565b979650505050505050565b60208152600061132260208301846115f5565b60408152600061174660408301856115f5565b828103602084015261175881856115f5565b95945050505050565b6020815260006113226020830184611630565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff82111561189a5761189a61196b565b5060051b60200190565b600082198211156118b7576118b761193f565b500190565b600181811c908216806118d057607f821691505b602082108114156118f157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff8111828210171561191d5761191d61196b565b6040525050565b60006000198214156119385761193861193f565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d111561199a5760046000803e5060005160e01c5b90565b600060443d10156119ab5790565b6040516003193d81016004833e81513d67ffffffffffffffff81602484011181841117156119db57505050505090565b82850191508151818111156119f35750505050505090565b843d8701016020828501011115611a0d5750505050505090565b611a1c602082860101876118f7565b509095945050505050565b6001600160e01b0319811681146107cb57600080fdfea2646970667358221220cf057e46919ed96188c9ab683fcacce4553d44d03df6edf1e2d4cb405972839664736f6c63430008070033

Deployed Bytecode Sourcemap

108:1175:9:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2042:228:2;;;;;;;;;;-1:-1:-1;2042:228:2;;;;;:::i;:::-;;:::i;:::-;;;17137:25:10;;;17125:2;17110:18;2042:228:2;;;;;;;;1093:305;;;;;;;;;;-1:-1:-1;1093:305:2;;;;;:::i;:::-;;:::i;:::-;;;9731:14:10;;9724:22;9706:41;;9694:2;9679:18;1093:305:2;9566:187:10;1797:103:2;;;;;;;;;;-1:-1:-1;1797:103:2;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;227:39:9:-;;;;;;;;;;;;263:3;227:39;;1080:200;;;:::i;:::-;;273:28;;;;;;;;;;-1:-1:-1;273:28:9;;;;;;;;869:82;;;;;;;;;;;;;:::i;4070:430:2:-;;;;;;;;;;-1:-1:-1;4070:430:2;;;;;:::i;:::-;;:::i;959:109:9:-;;;;;;;;;;;;;:::i;2427:508:2:-;;;;;;;;;;-1:-1:-1;2427:508:2;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1596:92:8:-;;;;;;;;;;;;;:::i;964:85::-;;;;;;;;;;-1:-1:-1;1036:6:8;;964:85;;-1:-1:-1;;;;;1036:6:8;;;7093:51:10;;7081:2;7066:18;964:85:8;6947:203:10;3003:306:2;;;;;;;;;;-1:-1:-1;3003:306:2;;;;;:::i;:::-;;:::i;164:29:9:-;;;;;;;;;;;;;;;;3376:166:2;;;;;;;;;;-1:-1:-1;3376:166:2;;;;;:::i;:::-;-1:-1:-1;;;;;3498:27:2;;;3475:4;3498:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;3376:166;3609:389;;;;;;;;;;-1:-1:-1;3609:389:2;;;;;:::i;:::-;;:::i;1837:189:8:-;;;;;;;;;;-1:-1:-1;1837:189:8;;;;;:::i;:::-;;:::i;2042:228:2:-;2128:7;-1:-1:-1;;;;;2155:21:2;;2147:77;;;;-1:-1:-1;;;2147:77:2;;11014:2:10;2147:77:2;;;10996:21:10;11053:2;11033:18;;;11026:30;11092:34;11072:18;;;11065:62;-1:-1:-1;;;11143:18:10;;;11136:41;11194:19;;2147:77:2;;;;;;;;;-1:-1:-1;2241:9:2;:13;;;;;;;;;;;-1:-1:-1;;;;;2241:22:2;;;;;;;;;;;;2042:228::o;1093:305::-;1195:4;-1:-1:-1;;;;;;1230:41:2;;-1:-1:-1;;;1230:41:2;;:109;;-1:-1:-1;;;;;;;1287:52:2;;-1:-1:-1;;;1287:52:2;1230:109;:161;;;-1:-1:-1;;;;;;;;;;869:40:3;;;1355:36:2;1211:180;1093:305;-1:-1:-1;;1093:305:2:o;1797:103::-;1857:13;1889:4;1882:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1797:103;;;:::o;1080:200:9:-;555:8;;1121:10;;555:8;;547:37;;;;-1:-1:-1;;;547:37:9;;12523:2:10;547:37:9;;;12505:21:10;12562:2;12542:18;;;12535:30;-1:-1:-1;;;12581:18:10;;;12574:46;12637:18;;547:37:9;12321:340:10;547:37:9;622:10;603:15;:29;;595:59;;;;-1:-1:-1;;;595:59:9;;12177:2:10;595:59:9;;;12159:21:10;12216:2;12196:18;;;12189:30;-1:-1:-1;;;12235:18:10;;;12228:47;12292:18;;595:59:9;11975:341:10;595:59:9;263:3;673:12;;:27;665:49;;;;-1:-1:-1;;;665:49:9;;14875:2:10;665:49:9;;;14857:21:10;14914:1;14894:18;;;14887:29;-1:-1:-1;;;14932:18:10;;;14925:39;14981:18;;665:49:9;14673:332:10;665:49:9;733:9;746;733:22;725:56;;;;-1:-1:-1;;;725:56:9;;16843:2:10;725:56:9;;;16825:21:10;16882:2;16862:18;;;16855:30;-1:-1:-1;;;16901:18:10;;;16894:51;16962:18;;725:56:9;16641:345:10;725:56:9;820:1;800:17;810:3;815:1;800:9;:17::i;:::-;:21;792:49;;;;-1:-1:-1;;;792:49:9;;11426:2:10;792:49:9;;;11408:21:10;11465:2;11445:18;;;11438:30;-1:-1:-1;;;11484:18:10;;;11477:45;11539:18;;792:49:9;11224:339:10;792:49:9;1179:12:::1;:14:::0;;1158:10:::1;::::0;1144:11:::1;1179:14;::::0;::::1;:::i;:::-;;;;;;1204:20;1210:3;1215:1;1218::::0;1204:20:::1;;;;;;;;;;;::::0;:5:::1;:20::i;:::-;1259:12;::::0;1240:32:::1;::::0;;-1:-1:-1;;;;;8743:32:10;;8725:51;;8807:2;8792:18;;8785:34;;;;1240:32:9::1;::::0;8698:18:10;1240:32:9::1;;;;;;;1133:147;1080:200:::0;:::o;869:82::-;1036:6:8;;-1:-1:-1;;;;;1036:6:8;666:10:1;1176:23:8;1168:68;;;;-1:-1:-1;;;1168:68:8;;;;;;;:::i;:::-;935:8:9::1;::::0;;-1:-1:-1;;923:20:9;::::1;935:8;::::0;;::::1;934:9;923:20;::::0;;869:82::o;4070:430:2:-;-1:-1:-1;;;;;4295:20:2;;666:10:1;4295:20:2;;:60;;-1:-1:-1;4319:36:2;4336:4;666:10:1;3376:166:2;:::i;4319:36::-;4274:157;;;;-1:-1:-1;;;4274:157:2;;13684:2:10;4274:157:2;;;13666:21:10;13723:2;13703:18;;;13696:30;13762:34;13742:18;;;13735:62;-1:-1:-1;;;13813:18:10;;;13806:48;13871:19;;4274:157:2;13482:414:10;4274:157:2;4441:52;4464:4;4470:2;4474:3;4479:7;4488:4;4441:22;:52::i;:::-;4070:430;;;;;:::o;959:109:9:-;1036:6:8;;-1:-1:-1;;;;;1036:6:8;666:10:1;1176:23:8;1168:68;;;;-1:-1:-1;;;1168:68:8;;;;;;;:::i;:::-;1009:51:9::1;::::0;1017:10:::1;::::0;1038:21:::1;1009:51:::0;::::1;;;::::0;::::1;::::0;;;1038:21;1017:10;1009:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;959:109::o:0;2427:508:2:-;2578:16;2637:3;:10;2618:8;:15;:29;2610:83;;;;-1:-1:-1;;;2610:83:2;;15622:2:10;2610:83:2;;;15604:21:10;15661:2;15641:18;;;15634:30;15700:34;15680:18;;;15673:62;-1:-1:-1;;;15751:18:10;;;15744:39;15800:19;;2610:83:2;15420:405:10;2610:83:2;2704:30;2751:8;:15;2737:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2737:30:2;;2704:63;;2783:9;2778:120;2802:8;:15;2798:1;:19;2778:120;;;2857:30;2867:8;2876:1;2867:11;;;;;;;;:::i;:::-;;;;;;;2880:3;2884:1;2880:6;;;;;;;;:::i;:::-;;;;;;;2857:9;:30::i;:::-;2838:13;2852:1;2838:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;2819:3;;;:::i;:::-;;;2778:120;;;-1:-1:-1;2915:13:2;2427:508;-1:-1:-1;;;2427:508:2:o;1596:92:8:-;1036:6;;-1:-1:-1;;;;;1036:6:8;666:10:1;1176:23:8;1168:68;;;;-1:-1:-1;;;1168:68:8;;;;;;;:::i;:::-;1660:21:::1;1678:1;1660:9;:21::i;:::-;1596:92::o:0;3003:306:2:-;666:10:1;-1:-1:-1;;;;;3105:24:2;;;;3097:78;;;;-1:-1:-1;;;3097:78:2;;15212:2:10;3097:78:2;;;15194:21:10;15251:2;15231:18;;;15224:30;15290:34;15270:18;;;15263:62;-1:-1:-1;;;15341:18:10;;;15334:39;15390:19;;3097:78:2;15010:405:10;3097:78:2;666:10:1;3186:32:2;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;3186:42:2;;;;;;;;;;;;:53;;-1:-1:-1;;3186:53:2;;;;;;;;;;3254:48;;9706:41:10;;;3186:42:2;;666:10:1;3254:48:2;;9679:18:10;3254:48:2;;;;;;;3003:306;;:::o;3609:389::-;-1:-1:-1;;;;;3809:20:2;;666:10:1;3809:20:2;;:60;;-1:-1:-1;3833:36:2;3850:4;666:10:1;3376:166:2;:::i;3833:36::-;3788:148;;;;-1:-1:-1;;;3788:148:2;;12868:2:10;3788:148:2;;;12850:21:10;12907:2;12887:18;;;12880:30;12946:34;12926:18;;;12919:62;-1:-1:-1;;;12997:18:10;;;12990:39;13046:19;;3788:148:2;12666:405:10;3788:148:2;3946:45;3964:4;3970:2;3974;3978:6;3986:4;3946:17;:45::i;1837:189:8:-;1036:6;;-1:-1:-1;;;;;1036:6:8;666:10:1;1176:23:8;1168:68;;;;-1:-1:-1;;;1168:68:8;;;;;;;:::i;:::-;-1:-1:-1;;;;;1925:22:8;::::1;1917:73;;;::::0;-1:-1:-1;;;1917:73:8;;11770:2:10;1917:73:8::1;::::0;::::1;11752:21:10::0;11809:2;11789:18;;;11782:30;11848:34;11828:18;;;11821:62;-1:-1:-1;;;11899:18:10;;;11892:36;11945:19;;1917:73:8::1;11568:402:10::0;1917:73:8::1;2000:19;2010:8;2000:9;:19::i;718:377:0:-:0;1034:20;1080:8;;;718:377::o;8435:583:2:-;-1:-1:-1;;;;;8587:21:2;;8579:67;;;;-1:-1:-1;;;8579:67:2;;16441:2:10;8579:67:2;;;16423:21:10;16480:2;16460:18;;;16453:30;16519:34;16499:18;;;16492:62;-1:-1:-1;;;16570:18:10;;;16563:31;16611:19;;8579:67:2;16239:397:10;8579:67:2;666:10:1;8699:107:2;666:10:1;8657:16:2;8742:7;8751:21;8769:2;8751:17;:21::i;:::-;8774:25;8792:6;8774:17;:25::i;8699:107::-;8817:9;:13;;;;;;;;;;;-1:-1:-1;;;;;8817:22:2;;;;;;;;;:32;;8843:6;;8817:9;:32;;8843:6;;8817:32;:::i;:::-;;;;-1:-1:-1;;8864:57:2;;;17347:25:10;;;17403:2;17388:18;;17381:34;;;-1:-1:-1;;;;;8864:57:2;;;;8897:1;;8864:57;;;;;;17320:18:10;8864:57:2;;;;;;;8932:79;8963:8;8981:1;8985:7;8994:2;8998:6;9006:4;8932:30;:79::i;6093:1045::-;6313:7;:14;6299:3;:10;:28;6291:81;;;;-1:-1:-1;;;6291:81:2;;16032:2:10;6291:81:2;;;16014:21:10;16071:2;16051:18;;;16044:30;16110:34;16090:18;;;16083:62;-1:-1:-1;;;16161:18:10;;;16154:38;16209:19;;6291:81:2;15830:404:10;6291:81:2;-1:-1:-1;;;;;6390:16:2;;6382:66;;;;-1:-1:-1;;;6382:66:2;;;;;;;:::i;:::-;666:10:1;6459:16:2;6572:411;6596:3;:10;6592:1;:14;6572:411;;;6627:10;6640:3;6644:1;6640:6;;;;;;;;:::i;:::-;;;;;;;6627:19;;6660:14;6677:7;6685:1;6677:10;;;;;;;;:::i;:::-;;;;;;;;;;;;6702:19;6724:13;;;;;;;;;;-1:-1:-1;;;;;6724:19:2;;;;;;;;;;;;6677:10;;-1:-1:-1;6765:21:2;;;;6757:76;;;;-1:-1:-1;;;6757:76:2;;;;;;;:::i;:::-;6875:9;:13;;;;;;;;;;;-1:-1:-1;;;;;6875:19:2;;;;;;;;;;6897:20;;;6875:42;;6945:17;;;;;;;:27;;6897:20;;6875:9;6945:27;;6897:20;;6945:27;:::i;:::-;;;;;;;;6613:370;;;6608:3;;;;:::i;:::-;;;6572:411;;;;7028:2;-1:-1:-1;;;;;6998:47:2;7022:4;-1:-1:-1;;;;;6998:47:2;7012:8;-1:-1:-1;;;;;6998:47:2;;7032:3;7037:7;6998:47;;;;;;;:::i;:::-;;;;;;;;7056:75;7092:8;7102:4;7108:2;7112:3;7117:7;7126:4;7056:35;:75::i;:::-;6281:857;6093:1045;;;;;:::o;2032:169:8:-;2106:6;;;-1:-1:-1;;;;;2122:17:8;;;-1:-1:-1;;;;;;2122:17:8;;;;;;;2154:40;;2106:6;;;2122:17;2106:6;;2154:40;;2087:16;;2154:40;2077:124;2032:169;:::o;4950:797:2:-;-1:-1:-1;;;;;5131:16:2;;5123:66;;;;-1:-1:-1;;;5123:66:2;;;;;;;:::i;:::-;666:10:1;5242:96:2;666:10:1;5273:4:2;5279:2;5283:21;5301:2;5283:17;:21::i;5242:96::-;5349:19;5371:13;;;;;;;;;;;-1:-1:-1;;;;;5371:19:2;;;;;;;;;;5408:21;;;;5400:76;;;;-1:-1:-1;;;5400:76:2;;;;;;;:::i;:::-;5510:9;:13;;;;;;;;;;;-1:-1:-1;;;;;5510:19:2;;;;;;;;;;5532:20;;;5510:42;;5572:17;;;;;;;:27;;5532:20;;5510:9;5572:27;;5532:20;;5572:27;:::i;:::-;;;;-1:-1:-1;;5615:46:2;;;17347:25:10;;;17403:2;17388:18;;17381:34;;;-1:-1:-1;;;;;5615:46:2;;;;;;;;;;;;;;17320:18:10;5615:46:2;;;;;;;5672:68;5703:8;5713:4;5719:2;5723;5727:6;5735:4;5672:30;:68::i;:::-;5113:634;;4950:797;;;;;:::o;14755:193::-;14874:16;;;14888:1;14874:16;;;;;;;;;14821;;14849:22;;14874:16;;;;;;;;;;;;-1:-1:-1;14874:16:2;14849:41;;14911:7;14900:5;14906:1;14900:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;14936:5;14755:193;-1:-1:-1;;14755:193:2:o;13226:725::-;-1:-1:-1;;;;;13433:13:2;;1034:20:0;1080:8;13429:516:2;;13468:72;;-1:-1:-1;;;13468:72:2;;-1:-1:-1;;;;;13468:38:2;;;;;:72;;13507:8;;13517:4;;13523:2;;13527:6;;13535:4;;13468:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13468:72:2;;;;;;;;-1:-1:-1;;13468:72:2;;;;;;;;;;;;:::i;:::-;;;13464:471;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;13811:6;13804:14;;-1:-1:-1;;;13804:14:2;;;;;;;;:::i;13464:471::-;;;13858:62;;-1:-1:-1;;;13858:62:2;;10184:2:10;13858:62:2;;;10166:21:10;10223:2;10203:18;;;10196:30;10262:34;10242:18;;;10235:62;-1:-1:-1;;;10313:18:10;;;10306:50;10373:19;;13858:62:2;9982:416:10;13464:471:2;-1:-1:-1;;;;;;13589:55:2;;-1:-1:-1;;;13589:55:2;13585:152;;13668:50;;-1:-1:-1;;;13668:50:2;;;;;;;:::i;13957:792::-;-1:-1:-1;;;;;14189:13:2;;1034:20:0;1080:8;14185:558:2;;14224:79;;-1:-1:-1;;;14224:79:2;;-1:-1:-1;;;;;14224:43:2;;;;;:79;;14268:8;;14278:4;;14284:3;;14289:7;;14298:4;;14224:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14224:79:2;;;;;;;;-1:-1:-1;;14224:79:2;;;;;;;;;;;;:::i;:::-;;;14220:513;;;;:::i;:::-;-1:-1:-1;;;;;;14382:60:2;;-1:-1:-1;;;14382:60:2;14378:157;;14466:50;;-1:-1:-1;;;14466:50:2;;;;;;;:::i;14:173:10:-;82:20;;-1:-1:-1;;;;;131:31:10;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:735::-;246:5;299:3;292:4;284:6;280:17;276:27;266:55;;317:1;314;307:12;266:55;353:6;340:20;379:4;402:43;442:2;402:43;:::i;:::-;474:2;468:9;486:31;514:2;506:6;486:31;:::i;:::-;552:18;;;586:15;;;;-1:-1:-1;621:15:10;;;671:1;667:10;;;655:23;;651:32;;648:41;-1:-1:-1;645:61:10;;;702:1;699;692:12;645:61;724:1;734:163;748:2;745:1;742:9;734:163;;;805:17;;793:30;;843:12;;;;875;;;;766:1;759:9;734:163;;;-1:-1:-1;915:6:10;;192:735;-1:-1:-1;;;;;;;192:735:10:o;932:555::-;974:5;1027:3;1020:4;1012:6;1008:17;1004:27;994:55;;1045:1;1042;1035:12;994:55;1081:6;1068:20;1107:18;1103:2;1100:26;1097:52;;;1129:18;;:::i;:::-;1178:2;1172:9;1190:67;1245:2;1226:13;;-1:-1:-1;;1222:27:10;1251:4;1218:38;1172:9;1190:67;:::i;:::-;1281:2;1273:6;1266:18;1327:3;1320:4;1315:2;1307:6;1303:15;1299:26;1296:35;1293:55;;;1344:1;1341;1334:12;1293:55;1408:2;1401:4;1393:6;1389:17;1382:4;1374:6;1370:17;1357:54;1455:1;1431:15;;;1448:4;1427:26;1420:37;;;;1435:6;932:555;-1:-1:-1;;;932:555:10:o;1492:186::-;1551:6;1604:2;1592:9;1583:7;1579:23;1575:32;1572:52;;;1620:1;1617;1610:12;1572:52;1643:29;1662:9;1643:29;:::i;:::-;1633:39;1492:186;-1:-1:-1;;;1492:186:10:o;1683:260::-;1751:6;1759;1812:2;1800:9;1791:7;1787:23;1783:32;1780:52;;;1828:1;1825;1818:12;1780:52;1851:29;1870:9;1851:29;:::i;:::-;1841:39;;1899:38;1933:2;1922:9;1918:18;1899:38;:::i;:::-;1889:48;;1683:260;;;;;:::o;1948:943::-;2102:6;2110;2118;2126;2134;2187:3;2175:9;2166:7;2162:23;2158:33;2155:53;;;2204:1;2201;2194:12;2155:53;2227:29;2246:9;2227:29;:::i;:::-;2217:39;;2275:38;2309:2;2298:9;2294:18;2275:38;:::i;:::-;2265:48;;2364:2;2353:9;2349:18;2336:32;2387:18;2428:2;2420:6;2417:14;2414:34;;;2444:1;2441;2434:12;2414:34;2467:61;2520:7;2511:6;2500:9;2496:22;2467:61;:::i;:::-;2457:71;;2581:2;2570:9;2566:18;2553:32;2537:48;;2610:2;2600:8;2597:16;2594:36;;;2626:1;2623;2616:12;2594:36;2649:63;2704:7;2693:8;2682:9;2678:24;2649:63;:::i;:::-;2639:73;;2765:3;2754:9;2750:19;2737:33;2721:49;;2795:2;2785:8;2782:16;2779:36;;;2811:1;2808;2801:12;2779:36;;2834:51;2877:7;2866:8;2855:9;2851:24;2834:51;:::i;:::-;2824:61;;;1948:943;;;;;;;;:::o;2896:606::-;3000:6;3008;3016;3024;3032;3085:3;3073:9;3064:7;3060:23;3056:33;3053:53;;;3102:1;3099;3092:12;3053:53;3125:29;3144:9;3125:29;:::i;:::-;3115:39;;3173:38;3207:2;3196:9;3192:18;3173:38;:::i;:::-;3163:48;;3258:2;3247:9;3243:18;3230:32;3220:42;;3309:2;3298:9;3294:18;3281:32;3271:42;;3364:3;3353:9;3349:19;3336:33;3392:18;3384:6;3381:30;3378:50;;;3424:1;3421;3414:12;3378:50;3447:49;3488:7;3479:6;3468:9;3464:22;3447:49;:::i;3507:347::-;3572:6;3580;3633:2;3621:9;3612:7;3608:23;3604:32;3601:52;;;3649:1;3646;3639:12;3601:52;3672:29;3691:9;3672:29;:::i;:::-;3662:39;;3751:2;3740:9;3736:18;3723:32;3798:5;3791:13;3784:21;3777:5;3774:32;3764:60;;3820:1;3817;3810:12;3764:60;3843:5;3833:15;;;3507:347;;;;;:::o;3859:254::-;3927:6;3935;3988:2;3976:9;3967:7;3963:23;3959:32;3956:52;;;4004:1;4001;3994:12;3956:52;4027:29;4046:9;4027:29;:::i;:::-;4017:39;4103:2;4088:18;;;;4075:32;;-1:-1:-1;;;3859:254:10:o;4118:1219::-;4236:6;4244;4297:2;4285:9;4276:7;4272:23;4268:32;4265:52;;;4313:1;4310;4303:12;4265:52;4353:9;4340:23;4382:18;4423:2;4415:6;4412:14;4409:34;;;4439:1;4436;4429:12;4409:34;4477:6;4466:9;4462:22;4452:32;;4522:7;4515:4;4511:2;4507:13;4503:27;4493:55;;4544:1;4541;4534:12;4493:55;4580:2;4567:16;4602:4;4625:43;4665:2;4625:43;:::i;:::-;4697:2;4691:9;4709:31;4737:2;4729:6;4709:31;:::i;:::-;4775:18;;;4809:15;;;;-1:-1:-1;4844:11:10;;;4886:1;4882:10;;;4874:19;;4870:28;;4867:41;-1:-1:-1;4864:61:10;;;4921:1;4918;4911:12;4864:61;4943:1;4934:10;;4953:169;4967:2;4964:1;4961:9;4953:169;;;5024:23;5043:3;5024:23;:::i;:::-;5012:36;;4985:1;4978:9;;;;;5068:12;;;;5100;;4953:169;;;-1:-1:-1;5141:6:10;-1:-1:-1;;5185:18:10;;5172:32;;-1:-1:-1;;5216:16:10;;;5213:36;;;5245:1;5242;5235:12;5213:36;;5268:63;5323:7;5312:8;5301:9;5297:24;5268:63;:::i;:::-;5258:73;;;4118:1219;;;;;:::o;5342:245::-;5400:6;5453:2;5441:9;5432:7;5428:23;5424:32;5421:52;;;5469:1;5466;5459:12;5421:52;5508:9;5495:23;5527:30;5551:5;5527:30;:::i;5592:249::-;5661:6;5714:2;5702:9;5693:7;5689:23;5685:32;5682:52;;;5730:1;5727;5720:12;5682:52;5762:9;5756:16;5781:30;5805:5;5781:30;:::i;5846:180::-;5905:6;5958:2;5946:9;5937:7;5933:23;5929:32;5926:52;;;5974:1;5971;5964:12;5926:52;-1:-1:-1;5997:23:10;;5846:180;-1:-1:-1;5846:180:10:o;6031:435::-;6084:3;6122:5;6116:12;6149:6;6144:3;6137:19;6175:4;6204:2;6199:3;6195:12;6188:19;;6241:2;6234:5;6230:14;6262:1;6272:169;6286:6;6283:1;6280:13;6272:169;;;6347:13;;6335:26;;6381:12;;;;6416:15;;;;6308:1;6301:9;6272:169;;;-1:-1:-1;6457:3:10;;6031:435;-1:-1:-1;;;;;6031:435:10:o;6471:471::-;6512:3;6550:5;6544:12;6577:6;6572:3;6565:19;6602:1;6612:162;6626:6;6623:1;6620:13;6612:162;;;6688:4;6744:13;;;6740:22;;6734:29;6716:11;;;6712:20;;6705:59;6641:12;6612:162;;;6792:6;6789:1;6786:13;6783:87;;;6858:1;6851:4;6842:6;6837:3;6833:16;6829:27;6822:38;6783:87;-1:-1:-1;6924:2:10;6903:15;-1:-1:-1;;6899:29:10;6890:39;;;;6931:4;6886:50;;6471:471;-1:-1:-1;;6471:471:10:o;7155:826::-;-1:-1:-1;;;;;7552:15:10;;;7534:34;;7604:15;;7599:2;7584:18;;7577:43;7514:3;7651:2;7636:18;;7629:31;;;7477:4;;7683:57;;7720:19;;7712:6;7683:57;:::i;:::-;7788:9;7780:6;7776:22;7771:2;7760:9;7756:18;7749:50;7822:44;7859:6;7851;7822:44;:::i;:::-;7808:58;;7915:9;7907:6;7903:22;7897:3;7886:9;7882:19;7875:51;7943:32;7968:6;7960;7943:32;:::i;:::-;7935:40;7155:826;-1:-1:-1;;;;;;;;7155:826:10:o;7986:560::-;-1:-1:-1;;;;;8283:15:10;;;8265:34;;8335:15;;8330:2;8315:18;;8308:43;8382:2;8367:18;;8360:34;;;8425:2;8410:18;;8403:34;;;8245:3;8468;8453:19;;8446:32;;;8208:4;;8495:45;;8520:19;;8512:6;8495:45;:::i;:::-;8487:53;7986:560;-1:-1:-1;;;;;;;7986:560:10:o;8830:261::-;9009:2;8998:9;8991:21;8972:4;9029:56;9081:2;9070:9;9066:18;9058:6;9029:56;:::i;9096:465::-;9353:2;9342:9;9335:21;9316:4;9379:56;9431:2;9420:9;9416:18;9408:6;9379:56;:::i;:::-;9483:9;9475:6;9471:22;9466:2;9455:9;9451:18;9444:50;9511:44;9548:6;9540;9511:44;:::i;:::-;9503:52;9096:465;-1:-1:-1;;;;;9096:465:10:o;9758:219::-;9907:2;9896:9;9889:21;9870:4;9927:44;9967:2;9956:9;9952:18;9944:6;9927:44;:::i;10403:404::-;10605:2;10587:21;;;10644:2;10624:18;;;10617:30;10683:34;10678:2;10663:18;;10656:62;-1:-1:-1;;;10749:2:10;10734:18;;10727:38;10797:3;10782:19;;10403:404::o;13076:401::-;13278:2;13260:21;;;13317:2;13297:18;;;13290:30;13356:34;13351:2;13336:18;;13329:62;-1:-1:-1;;;13422:2:10;13407:18;;13400:35;13467:3;13452:19;;13076:401::o;13901:406::-;14103:2;14085:21;;;14142:2;14122:18;;;14115:30;14181:34;14176:2;14161:18;;14154:62;-1:-1:-1;;;14247:2:10;14232:18;;14225:40;14297:3;14282:19;;13901:406::o;14312:356::-;14514:2;14496:21;;;14533:18;;;14526:30;14592:34;14587:2;14572:18;;14565:62;14659:2;14644:18;;14312:356::o;17426:183::-;17486:4;17519:18;17511:6;17508:30;17505:56;;;17541:18;;:::i;:::-;-1:-1:-1;17586:1:10;17582:14;17598:4;17578:25;;17426:183::o;17614:128::-;17654:3;17685:1;17681:6;17678:1;17675:13;17672:39;;;17691:18;;:::i;:::-;-1:-1:-1;17727:9:10;;17614:128::o;17747:380::-;17826:1;17822:12;;;;17869;;;17890:61;;17944:4;17936:6;17932:17;17922:27;;17890:61;17997:2;17989:6;17986:14;17966:18;17963:38;17960:161;;;18043:10;18038:3;18034:20;18031:1;18024:31;18078:4;18075:1;18068:15;18106:4;18103:1;18096:15;17960:161;;17747:380;;;:::o;18132:249::-;18242:2;18223:13;;-1:-1:-1;;18219:27:10;18207:40;;18277:18;18262:34;;18298:22;;;18259:62;18256:88;;;18324:18;;:::i;:::-;18360:2;18353:22;-1:-1:-1;;18132:249:10:o;18386:135::-;18425:3;-1:-1:-1;;18446:17:10;;18443:43;;;18466:18;;:::i;:::-;-1:-1:-1;18513:1:10;18502:13;;18386:135::o;18526:127::-;18587:10;18582:3;18578:20;18575:1;18568:31;18618:4;18615:1;18608:15;18642:4;18639:1;18632:15;18658:127;18719:10;18714:3;18710:20;18707:1;18700:31;18750:4;18747:1;18740:15;18774:4;18771:1;18764:15;18790:127;18851:10;18846:3;18842:20;18839:1;18832:31;18882:4;18879:1;18872:15;18906:4;18903:1;18896:15;18922:179;18957:3;18999:1;18981:16;18978:23;18975:120;;;19045:1;19042;19039;19024:23;-1:-1:-1;19082:1:10;19076:8;19071:3;19067:18;18975:120;18922:179;:::o;19106:671::-;19145:3;19187:4;19169:16;19166:26;19163:39;;;19106:671;:::o;19163:39::-;19229:2;19223:9;-1:-1:-1;;19294:16:10;19290:25;;19287:1;19223:9;19266:50;19345:4;19339:11;19369:16;19404:18;19475:2;19468:4;19460:6;19456:17;19453:25;19448:2;19440:6;19437:14;19434:45;19431:58;;;19482:5;;;;;19106:671;:::o;19431:58::-;19519:6;19513:4;19509:17;19498:28;;19555:3;19549:10;19582:2;19574:6;19571:14;19568:27;;;19588:5;;;;;;19106:671;:::o;19568:27::-;19672:2;19653:16;19647:4;19643:27;19639:36;19632:4;19623:6;19618:3;19614:16;19610:27;19607:69;19604:82;;;19679:5;;;;;;19106:671;:::o;19604:82::-;19695:57;19746:4;19737:6;19729;19725:19;19721:30;19715:4;19695:57;:::i;:::-;-1:-1:-1;19768:3:10;;19106:671;-1:-1:-1;;;;;19106:671:10:o;19782:131::-;-1:-1:-1;;;;;;19856:32:10;;19846:43;;19836:71;;19903:1;19900;19893:12

Swarm Source

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