ETH Price: $3,265.80 (+2.99%)
Gas: 2 Gwei

Token

Paradise Trippies Treasure Chests (TRIPPYLOOT)
 

Overview

Max Total Supply

1,893 TRIPPYLOOT

Holders

1,756

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
warroomcap.eth
0x2a4a4E3F335aFA7BB76c0c2B82BBF11A5Ed0e4c6
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:
TrippyLoot

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-02
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length)
        internal
        pure
        returns (string memory)
    {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/utils/Context.sol

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol

/**
 * @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: @openzeppelin/contracts/utils/introspection/IERC165.sol

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

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

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

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

/**
 * @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: @openzeppelin/contracts/token/ERC1155/IERC1155.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: @openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.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: @openzeppelin/contracts/token/ERC1155/ERC1155.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;
    }
}

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

abstract contract ContextMixin {
    function msgSender() internal view returns (address payable sender) {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}

contract Initializable {
    bool inited = false;

    modifier initializer() {
        require(!inited, "already inited");
        _;
        inited = true;
    }
}

contract EIP712Base is Initializable {
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    string public constant ERC712_VERSION = "1";

    bytes32 internal constant EIP712_DOMAIN_TYPEHASH =
        keccak256(
            bytes(
                "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
            )
        );
    bytes32 internal domainSeperator;

    // supposed to be called once while initializing.
    // one of the contracts that inherits this contract follows proxy pattern
    // so it is not possible to do this in a constructor
    function _initializeEIP712(string memory name) internal initializer {
        _setDomainSeperator(name);
    }

    function _setDomainSeperator(string memory name) internal {
        domainSeperator = keccak256(
            abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(ERC712_VERSION)),
                address(this),
                bytes32(getChainId())
            )
        );
    }

    function getDomainSeperator() public view returns (bytes32) {
        return domainSeperator;
    }

    function getChainId() public view returns (uint256) {
        uint256 id;
        assembly {
            id := chainid()
        }
        return id;
    }

    /**
     * Accept message hash and returns hash message in EIP712 compatible form
     * So that it can be used to recover signer from signature signed using EIP712 formatted data
     * https://eips.ethereum.org/EIPS/eip-712
     * "\\x19" makes the encoding deterministic
     * "\\x01" is the version byte to make it compatible to EIP-191
     */
    function toTypedMessageHash(bytes32 messageHash)
        internal
        view
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
            );
    }
}

contract NativeMetaTransaction is EIP712Base {
    using SafeMath for uint256;
    bytes32 private constant META_TRANSACTION_TYPEHASH =
        keccak256(
            bytes(
                "MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
            )
        );
    event MetaTransactionExecuted(
        address userAddress,
        address payable relayerAddress,
        bytes functionSignature
    );
    mapping(address => uint256) nonces;

    /*
     * Meta transaction structure.
     * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
     * He should call the desired function directly in that case.
     */
    struct MetaTransaction {
        uint256 nonce;
        address from;
        bytes functionSignature;
    }

    function executeMetaTransaction(
        address userAddress,
        bytes memory functionSignature,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) public payable returns (bytes memory) {
        MetaTransaction memory metaTx = MetaTransaction({
            nonce: nonces[userAddress],
            from: userAddress,
            functionSignature: functionSignature
        });

        require(
            verify(userAddress, metaTx, sigR, sigS, sigV),
            "Signer and signature do not match"
        );

        // increase nonce for user (to avoid re-use)
        nonces[userAddress] = nonces[userAddress].add(1);

        emit MetaTransactionExecuted(
            userAddress,
            payable(msg.sender),
            functionSignature
        );

        // Append userAddress and relayer address at the end to extract it from calling context
        (bool success, bytes memory returnData) = address(this).call(
            abi.encodePacked(functionSignature, userAddress)
        );
        require(success, "Function call not successful");

        return returnData;
    }

    function hashMetaTransaction(MetaTransaction memory metaTx)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    META_TRANSACTION_TYPEHASH,
                    metaTx.nonce,
                    metaTx.from,
                    keccak256(metaTx.functionSignature)
                )
            );
    }

    function getNonce(address user) public view returns (uint256 nonce) {
        nonce = nonces[user];
    }

    function verify(
        address signer,
        MetaTransaction memory metaTx,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) internal view returns (bool) {
        require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER");
        return
            signer ==
            ecrecover(
                toTypedMessageHash(hashMetaTransaction(metaTx)),
                sigV,
                sigR,
                sigS
            );
    }
}

contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

/**
 * @title ERC1155Tradable
 * ERC1155Tradable - ERC1155 contract that whitelists an operator address, has create and mint functionality, and supports useful standards from OpenZeppelin, like _exists(), name(), symbol(), and totalSupply()
 */
contract ERC1155Tradable is
    ContextMixin,
    ERC1155,
    NativeMetaTransaction,
    Ownable
{
    using Strings for string;
    using SafeMath for uint256;

    address proxyRegistryAddress;
    mapping(uint256 => address) public creators;
    mapping(uint256 => uint256) public tokenSupply;
    mapping(uint256 => string) customUri;
    // Contract name
    string public name;
    // Contract symbol
    string public symbol;

    /**
     * @dev Require _msgSender() to be the creator of the token id
     */
    modifier creatorOnly(uint256 _id) {
        require(
            creators[_id] == _msgSender(),
            "ERC1155Tradable#creatorOnly: ONLY_CREATOR_ALLOWED"
        );
        _;
    }

    /**
     * @dev Require _msgSender() to own more than 0 of the token id
     */
    modifier ownersOnly(uint256 _id) {
        require(
            balanceOf(_msgSender(), _id) > 0,
            "ERC1155Tradable#ownersOnly: ONLY_OWNERS_ALLOWED"
        );
        _;
    }

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

    function uri(uint256 _id) public view override returns (string memory) {
        require(_exists(_id), "ERC1155Tradable#uri: NONEXISTENT_TOKEN");
        // We have to convert string to bytes to check for existence
        bytes memory customUriBytes = bytes(customUri[_id]);
        if (customUriBytes.length > 0) {
            return customUri[_id];
        } else {
            return super.uri(_id);
        }
    }

    /**
     * @dev Returns the total quantity for a token ID
     * @param _id uint256 ID of the token to query
     * @return amount of token in existence
     */
    function totalSupply(uint256 _id) public view returns (uint256) {
        return tokenSupply[_id];
    }

    /**
     * @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].
     * @param _newURI New URI for all tokens
     */
    function setURI(string memory _newURI) public onlyOwner {
        _setURI(_newURI);
    }

    /**
     * @dev Will update the base URI for the token
     * @param _tokenId The token to update. _msgSender() must be its creator.
     * @param _newURI New URI for the token.
     */
    function setCustomURI(uint256 _tokenId, string memory _newURI)
        public
        creatorOnly(_tokenId)
    {
        customUri[_tokenId] = _newURI;
        emit URI(_newURI, _tokenId);
    }

    /**
     * @dev Creates a new token type and assigns _initialSupply to an address
     * NOTE: remove onlyOwner if you want third parties to create new tokens on
     *       your contract (which may change your IDs)
     * NOTE: The token id must be passed. This allows lazy creation of tokens or
     *       creating NFTs by setting the id's high bits with the method
     *       described in ERC1155 or to use ids representing values other than
     *       successive small integers. If you wish to create ids as successive
     *       small integers you can either subclass this class to count onchain
     *       or maintain the offchain cache of identifiers recommended in
     *       ERC1155 and calculate successive ids from that.
     * @param _initialOwner address of the first owner of the token
     * @param _id The id of the token to create (must not currenty exist).
     * @param _initialSupply amount to supply the first owner
     * @param _uri Optional URI for this token type
     * @param _data Data to pass if receiver is contract
     * @return The newly created token ID
     */
    function create(
        address _initialOwner,
        uint256 _id,
        uint256 _initialSupply,
        string memory _uri,
        bytes memory _data
    ) public onlyOwner returns (uint256) {
        require(!_exists(_id), "token _id already exists");
        creators[_id] = _msgSender();

        if (bytes(_uri).length > 0) {
            customUri[_id] = _uri;
            emit URI(_uri, _id);
        }

        _mint(_initialOwner, _id, _initialSupply, _data);

        tokenSupply[_id] = _initialSupply;
        return _id;
    }

    /**
     * @dev Mints some amount of tokens to an address
     * @param _to          Address of the future owner of the token
     * @param _id          Token ID to mint
     * @param _quantity    Amount of tokens to mint
     * @param _data        Data to pass if receiver is contract
     */
    function mint(
        address _to,
        uint256 _id,
        uint256 _quantity,
        bytes memory _data
    ) public virtual creatorOnly(_id) {
        _mint(_to, _id, _quantity, _data);
        tokenSupply[_id] = tokenSupply[_id].add(_quantity);
    }

    /**
     * @dev Mint tokens for each id in _ids
     * @param _to          The address to mint tokens to
     * @param _ids         Array of ids to mint
     * @param _quantities  Array of amounts of tokens to mint per id
     * @param _data        Data to pass if receiver is contract
     */
    function batchMint(
        address _to,
        uint256[] memory _ids,
        uint256[] memory _quantities,
        bytes memory _data
    ) public {
        for (uint256 i = 0; i < _ids.length; i++) {
            uint256 _id = _ids[i];
            require(
                creators[_id] == _msgSender(),
                "ERC1155Tradable#batchMint: ONLY_CREATOR_ALLOWED"
            );
            uint256 quantity = _quantities[i];
            tokenSupply[_id] = tokenSupply[_id].add(quantity);
        }
        _mintBatch(_to, _ids, _quantities, _data);
    }

    /**
     * @dev Change the creator address for given tokens
     * @param _to   Address of the new creator
     * @param _ids  Array of Token IDs to change creator
     */
    function setCreator(address _to, uint256[] memory _ids) public {
        require(
            _to != address(0),
            "ERC1155Tradable#setCreator: INVALID_ADDRESS."
        );
        for (uint256 i = 0; i < _ids.length; i++) {
            uint256 id = _ids[i];
            _setCreator(_to, id);
        }
    }

    /**
     * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-free listings.
     */
    function isApprovedForAll(address _owner, address _operator)
        public
        view
        override
        returns (bool isOperator)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(_owner)) == _operator) {
            return true;
        }

        return ERC1155.isApprovedForAll(_owner, _operator);
    }

    /**
     * @dev Change the creator address for given token
     * @param _to   Address of the new creator
     * @param _id  Token IDs to change creator of
     */
    function _setCreator(address _to, uint256 _id) internal creatorOnly(_id) {
        creators[_id] = _to;
    }

    /**
     * @dev Returns whether the specified token exists by checking to see if it has a creator
     * @param _id uint256 ID of the token to query the existence of
     * @return bool whether the token exists
     */
    function _exists(uint256 _id) internal view returns (bool) {
        return creators[_id] != address(0);
    }

    function exists(uint256 _id) external view returns (bool) {
        return _exists(_id);
    }

    /**
     * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea.
     */
    function _msgSender() internal view override returns (address sender) {
        return ContextMixin.msgSender();
    }
}

contract TrippyLoot is ERC1155Tradable {
    using SafeMath for uint256;

    constructor()
        ERC1155Tradable(
            "Paradise Trippies Treasure Chests",
            "TRIPPYLOOT",
            "",
            0xa5409ec958C83C3f309868babACA7c86DCB077c1
        )
    {
        create(msg.sender, 1, 1, "https://paradise.mypinata.cloud/ipfs/Qmc3C75PzKuX31B9xQ2cqoFG4JcC2nUb2QtyqFK9Vh8E7d/1.json", "");
        create(msg.sender, 2, 1, "https://paradise.mypinata.cloud/ipfs/Qmc3C75PzKuX31B9xQ2cqoFG4JcC2nUb2QtyqFK9Vh8E7d/2.json", "");
        create(msg.sender, 3, 1, "https://paradise.mypinata.cloud/ipfs/Qmc3C75PzKuX31B9xQ2cqoFG4JcC2nUb2QtyqFK9Vh8E7d/3.json", "");
    }

    function airdrop(
        address[] memory _addrs,
        uint256 _quantity,
        uint256 _id
    ) public onlyOwner {
        for (uint256 i = 0; i < _addrs.length; i++) {
            _mint(_addrs[i], _id, _quantity, "");
            tokenSupply[_id] = tokenSupply[_id].add(_quantity);
        }
    }
}

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":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addrs","type":"address[]"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_quantities","type":"uint256[]"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_initialOwner","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_initialSupply","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"create","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"creators","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"isOperator","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"setCreator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_newURI","type":"string"}],"name":"setCustomURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040526003805460ff191690553480156200001b57600080fd5b5060405180606001604052806021815260200162003b6e602191396040518060400160405280600a8152602001691514925414165313d3d560b21b8152506040518060200160405280600081525073a5409ec958c83c3f309868babaca7c86dcb077c18162000090816200024060201b60201c565b50620000a56200009f62000259565b62000275565b8351620000ba90600b9060208701906200092d565b508251620000d090600c9060208601906200092d565b50600780546001600160a01b0319166001600160a01b038316179055600b80546200018c91906200010190620009d3565b80601f01602080910402602001604051908101604052809291908181526020018280546200012f90620009d3565b8015620001805780601f10620001545761010080835404028352916020019162000180565b820191906000526020600020905b8154815290600101906020018083116200016257829003601f168201915b5050620002c792505050565b50505050620001c7336001806040518060800160405280605a815260200162003aba605a91396040805160208101909152600081526200032c565b506200020033600260016040518060800160405280605a815260200162003b14605a91396040805160208101909152600081526200032c565b506200023933600360016040518060800160405280605a815260200162003b8f605a91396040805160208101909152600081526200032c565b5062000c11565b8051620002559060029060208401906200092d565b5050565b600062000270620004d360201b620015ef1760201c565b905090565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60035460ff1615620003115760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b60448201526064015b60405180910390fd5b6200031c8162000531565b506003805460ff19166001179055565b60006200033862000259565b6001600160a01b0316620003546006546001600160a01b031690565b6001600160a01b031614620003ac5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000308565b6000858152600860205260409020546001600160a01b031615620004135760405162461bcd60e51b815260206004820152601860248201527f746f6b656e205f696420616c7265616479206578697374730000000000000000604482015260640162000308565b6200041d62000259565b600086815260086020526040902080546001600160a01b0319166001600160a01b0392909216919091179055825115620004ae576000858152600a60209081526040909120845162000472928601906200092d565b50847f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b84604051620004a5919062000a5f565b60405180910390a25b620004bc86868685620005d3565b505050600082815260096020526040902055919050565b60003033036200052b57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506200052e9050565b50335b90565b6040518060800160405280604f815260200162003a6b604f9139805160209182012082519282019290922060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608401523060808401524660a0808501919091528151808503909101815260c090930190528151910120600455565b6001600160a01b038416620006355760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840162000308565b60006200064162000259565b905062000668816000876200065688620006fc565b6200066188620006fc565b5050505050565b6000848152602081815260408083206001600160a01b0389168452909152812080548592906200069a90849062000a7b565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4620006618160008787878762000752565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811062000739576200073962000aa2565b602090810291909101015292915050565b505050505050565b62000771846001600160a01b03166200092760201b6200164b1760201c565b156200074a5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190620007ad908990899088908890889060040162000ab8565b6020604051808303816000875af1925050508015620007eb575060408051601f3d908101601f19168201909252620007e89181019062000aff565b60015b620008ab57620007fa62000b2b565b806308c379a0036200083a57506200081162000b82565b806200081e57506200083c565b8060405162461bcd60e51b815260040162000308919062000a5f565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e746572000000000000000000000000606482015260840162000308565b6001600160e01b0319811663f23a6e6160e01b146200091e5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b606482015260840162000308565b50505050505050565b3b151590565b8280546200093b90620009d3565b90600052602060002090601f0160209004810192826200095f5760008555620009aa565b82601f106200097a57805160ff1916838001178555620009aa565b82800160010185558215620009aa579182015b82811115620009aa5782518255916020019190600101906200098d565b50620009b8929150620009bc565b5090565b5b80821115620009b85760008155600101620009bd565b600181811c90821680620009e857607f821691505b60208210810362000a0957634e487b7160e01b600052602260045260246000fd5b50919050565b6000815180845260005b8181101562000a375760208185018101518683018201520162000a19565b8181111562000a4a576000602083870101525b50601f01601f19169290920160200192915050565b60208152600062000a74602083018462000a0f565b9392505050565b6000821982111562000a9d57634e487b7160e01b600052601160045260246000fd5b500190565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009062000af49083018462000a0f565b979650505050505050565b60006020828403121562000b1257600080fd5b81516001600160e01b03198116811462000a7457600080fd5b600060033d11156200052e5760046000803e5060005160e01c90565b601f8201601f191681016001600160401b038111828210171562000b7b57634e487b7160e01b600052604160045260246000fd5b6040525050565b600060443d101562000b915790565b6040516003193d81016004833e81513d6001600160401b03808311602484018310171562000bc157505050505090565b828501915081518181111562000bda5750505050505090565b843d870101602082850101111562000bf55750505050505090565b62000c066020828601018762000b47565b509095945050505050565b612e4a8062000c216000396000f3fe6080604052600436106101c15760003560e01c80634e1273f4116100f7578063a496dedf11610095578063d2a6b51a11610064578063d2a6b51a14610544578063e985e9c514610564578063f242432a14610584578063f2fde38b146105a457600080fd5b8063a496dedf146104a1578063b48ab8b6146104c1578063bd85b039146104e1578063cd53d08e1461050e57600080fd5b8063731133e9116100d1578063731133e91461041a5780638da5cb5b1461043a57806395d89b411461046c578063a22cb4651461048157600080fd5b80634e1273f4146103b85780634f558e79146103e5578063715018a61461040557600080fd5b806320379ee5116101645780632eb2c2d61161013e5780632eb2c2d6146103455780633408e4701461036557806336a100d5146103785780633adf80b41461039857600080fd5b806320379ee5146102cd5780632693ebf2146102e25780632d0335ab1461030f57600080fd5b806306fdde03116101a057806306fdde031461024b5780630c53c51c1461026d5780630e89341c146102805780630f7e5970146102a057600080fd5b8062fdd58e146101c657806301ffc9a7146101f957806302fe530514610229575b600080fd5b3480156101d257600080fd5b506101e66101e1366004612186565b6105c4565b6040519081526020015b60405180910390f35b34801561020557600080fd5b506102196102143660046121c8565b61065e565b60405190151581526020016101f0565b34801561023557600080fd5b5061024961024436600461229a565b6106ae565b005b34801561025757600080fd5b50610260610703565b6040516101f09190612326565b61026061027b366004612339565b610791565b34801561028c57600080fd5b5061026061029b3660046123b6565b61097b565b3480156102ac57600080fd5b50610260604051806040016040528060018152602001603160f81b81525081565b3480156102d957600080fd5b506004546101e6565b3480156102ee57600080fd5b506101e66102fd3660046123b6565b60096020526000908152604090205481565b34801561031b57600080fd5b506101e661032a3660046123cf565b6001600160a01b031660009081526005602052604090205490565b34801561035157600080fd5b50610249610360366004612480565b610b49565b34801561037157600080fd5b50466101e6565b34801561038457600080fd5b506101e661039336600461252d565b610bf2565b3480156103a457600080fd5b506102496103b3366004612586565b610d59565b3480156103c457600080fd5b506103d86103d336600461263b565b610df8565b6040516101f091906126cf565b3480156103f157600080fd5b506102196104003660046123b6565b610f21565b34801561041157600080fd5b50610249610f40565b34801561042657600080fd5b506102496104353660046126e2565b610f95565b34801561044657600080fd5b506006546001600160a01b03165b6040516001600160a01b0390911681526020016101f0565b34801561047857600080fd5b50610260611015565b34801561048d57600080fd5b5061024961049c366004612744565b611022565b3480156104ad57600080fd5b506102496104bc366004612782565b611135565b3480156104cd57600080fd5b506102496104dc3660046127cf565b6111fe565b3480156104ed57600080fd5b506101e66104fc3660046123b6565b60009081526009602052604090205490565b34801561051a57600080fd5b506104546105293660046123b6565b6008602052600090815260409020546001600160a01b031681565b34801561055057600080fd5b5061024961055f36600461285d565b611328565b34801561057057600080fd5b5061021961057f3660046128a2565b6113df565b34801561059057600080fd5b5061024961059f3660046128d0565b61149f565b3480156105b057600080fd5b506102496105bf3660046123cf565b611538565b60006001600160a01b0383166106355760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b60006001600160e01b03198216636cdb3d1360e11b148061068f57506001600160e01b031982166303a24d0760e21b145b8061065857506301ffc9a760e01b6001600160e01b0319831614610658565b6106b6611651565b6001600160a01b03166106d16006546001600160a01b031690565b6001600160a01b0316146106f75760405162461bcd60e51b815260040161062c90612938565b61070081611660565b50565b600b80546107109061296d565b80601f016020809104026020016040519081016040528092919081815260200182805461073c9061296d565b80156107895780601f1061075e57610100808354040283529160200191610789565b820191906000526020600020905b81548152906001019060200180831161076c57829003601f168201915b505050505081565b60408051606081810183526001600160a01b038816600081815260056020908152908590205484528301529181018690526107cf8782878787611677565b6108255760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b606482015260840161062c565b6001600160a01b038716600090815260056020526040902054610849906001611767565b6001600160a01b0388166000908152600560205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b9061089990899033908a906129a1565b60405180910390a1600080306001600160a01b0316888a6040516020016108c19291906129d6565b60408051601f19818403018152908290526108db91612a0d565b6000604051808303816000865af19150503d8060008114610918576040519150601f19603f3d011682016040523d82523d6000602084013e61091d565b606091505b50915091508161096f5760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000604482015260640161062c565b98975050505050505050565b6000818152600860205260409020546060906001600160a01b03166109f15760405162461bcd60e51b815260206004820152602660248201527f455243313135355472616461626c65237572693a204e4f4e4558495354454e546044820152652faa27a5a2a760d11b606482015260840161062c565b6000828152600a602052604081208054610a0a9061296d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a369061296d565b8015610a835780601f10610a5857610100808354040283529160200191610a83565b820191906000526020600020905b815481529060010190602001808311610a6657829003601f168201915b50505050509050600081511115610b33576000838152600a602052604090208054610aad9061296d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad99061296d565b8015610b265780601f10610afb57610100808354040283529160200191610b26565b820191906000526020600020905b815481529060010190602001808311610b0957829003601f168201915b5050505050915050919050565b610b3c83611773565b9392505050565b50919050565b610b51611651565b6001600160a01b0316856001600160a01b03161480610b775750610b778561057f611651565b610bde5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161062c565b610beb8585858585611807565b5050505050565b6000610bfc611651565b6001600160a01b0316610c176006546001600160a01b031690565b6001600160a01b031614610c3d5760405162461bcd60e51b815260040161062c90612938565b6000858152600860205260409020546001600160a01b031615610ca25760405162461bcd60e51b815260206004820152601860248201527f746f6b656e205f696420616c7265616479206578697374730000000000000000604482015260640161062c565b610caa611651565b600086815260086020526040902080546001600160a01b0319166001600160a01b0392909216919091179055825115610d36576000858152600a602090815260409091208451610cfc928601906120d8565b50847f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b84604051610d2d9190612326565b60405180910390a25b610d42868686856119ae565b505050600082815260096020526040902055919050565b81610d62611651565b6000828152600860205260409020546001600160a01b03908116911614610d9b5760405162461bcd60e51b815260040161062c90612a29565b6000838152600a602090815260409091208351610dba928501906120d8565b50827f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b83604051610deb9190612326565b60405180910390a2505050565b60608151835114610e5d5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161062c565b600083516001600160401b03811115610e7857610e786121e5565b604051908082528060200260200182016040528015610ea1578160200160208202803683370190505b50905060005b8451811015610f1957610eec858281518110610ec557610ec5612a7a565b6020026020010151858381518110610edf57610edf612a7a565b60200260200101516105c4565b828281518110610efe57610efe612a7a565b6020908102919091010152610f1281612aa6565b9050610ea7565b509392505050565b6000818152600860205260408120546001600160a01b03161515610658565b610f48611651565b6001600160a01b0316610f636006546001600160a01b031690565b6001600160a01b031614610f895760405162461bcd60e51b815260040161062c90612938565b610f936000611a89565b565b82610f9e611651565b6000828152600860205260409020546001600160a01b03908116911614610fd75760405162461bcd60e51b815260040161062c90612a29565b610fe3858585856119ae565b600084815260096020526040902054610ffc9084611767565b6000948552600960205260409094209390935550505050565b600c80546107109061296d565b816001600160a01b0316611034611651565b6001600160a01b03160361109c5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161062c565b80600160006110a9611651565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556110ed611651565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611129911515815260200190565b60405180910390a35050565b61113d611651565b6001600160a01b03166111586006546001600160a01b031690565b6001600160a01b03161461117e5760405162461bcd60e51b815260040161062c90612938565b60005b83518110156111f8576111be84828151811061119f5761119f612a7a565b60200260200101518385604051806020016040528060008152506119ae565b6000828152600960205260409020546111d79084611767565b600083815260096020526040902055806111f081612aa6565b915050611181565b50505050565b60005b835181101561131b57600084828151811061121e5761121e612a7a565b60200260200101519050611230611651565b6000828152600860205260409020546001600160a01b039081169116146112b15760405162461bcd60e51b815260206004820152602f60248201527f455243313135355472616461626c652362617463684d696e743a204f4e4c595f60448201526e10d491505513d497d0531313d5d151608a1b606482015260840161062c565b60008483815181106112c5576112c5612a7a565b602002602001015190506112f581600960008581526020019081526020016000205461176790919063ffffffff16565b60009283526009602052604090922091909155508061131381612aa6565b915050611201565b506111f884848484611adb565b6001600160a01b0382166113935760405162461bcd60e51b815260206004820152602c60248201527f455243313135355472616461626c652373657443726561746f723a20494e564160448201526b2624a22fa0a2222922a9a99760a11b606482015260840161062c565b60005b81518110156113da5760008282815181106113b3576113b3612a7a565b602002602001015190506113c78482611c31565b50806113d281612aa6565b915050611396565b505050565b60075460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c455279190602401602060405180830381865afa158015611431573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114559190612abf565b6001600160a01b03160361146d576001915050610658565b6001600160a01b0380851660009081526001602090815260408083209387168352929052205460ff165b949350505050565b6114a7611651565b6001600160a01b0316856001600160a01b031614806114cd57506114cd8561057f611651565b61152b5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b606482015260840161062c565b610beb8585858585611ca2565b611540611651565b6001600160a01b031661155b6006546001600160a01b031690565b6001600160a01b0316146115815760405162461bcd60e51b815260040161062c90612938565b6001600160a01b0381166115e65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161062c565b61070081611a89565b600030330361164557600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506116489050565b50335b90565b3b151590565b600061165b6115ef565b905090565b80516116739060029060208401906120d8565b5050565b60006001600160a01b0386166116dd5760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b606482015260840161062c565b60016116f06116eb87611dca565b611e47565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa15801561173e573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000610b3c8284612adc565b6060600280546117829061296d565b80601f01602080910402602001604051908101604052809291908181526020018280546117ae9061296d565b80156117fb5780601f106117d0576101008083540402835291602001916117fb565b820191906000526020600020905b8154815290600101906020018083116117de57829003601f168201915b50505050509050919050565b81518351146118285760405162461bcd60e51b815260040161062c90612af4565b6001600160a01b03841661184e5760405162461bcd60e51b815260040161062c90612b3c565b6000611858611651565b905060005b845181101561194057600085828151811061187a5761187a612a7a565b60200260200101519050600085838151811061189857611898612a7a565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156118e85760405162461bcd60e51b815260040161062c90612b81565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611925908490612adc565b925050819055505050508061193990612aa6565b905061185d565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611990929190612bcb565b60405180910390a46119a6818787878787611e77565b505050505050565b6001600160a01b0384166119d45760405162461bcd60e51b815260040161062c90612bf0565b60006119de611651565b90506119f9816000876119f088611fd2565b610beb88611fd2565b6000848152602081815260408083206001600160a01b038916845290915281208054859290611a29908490612adc565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610beb8160008787878761201d565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038416611b015760405162461bcd60e51b815260040161062c90612bf0565b8151835114611b225760405162461bcd60e51b815260040161062c90612af4565b6000611b2c611651565b905060005b8451811015611bc957838181518110611b4c57611b4c612a7a565b6020026020010151600080878481518110611b6957611b69612a7a565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000206000828254611bb19190612adc565b90915550819050611bc181612aa6565b915050611b31565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611c1a929190612bcb565b60405180910390a4610beb81600087878787611e77565b80611c3a611651565b6000828152600860205260409020546001600160a01b03908116911614611c735760405162461bcd60e51b815260040161062c90612a29565b50600090815260086020526040902080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038416611cc85760405162461bcd60e51b815260040161062c90612b3c565b6000611cd2611651565b9050611ce38187876119f088611fd2565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015611d245760405162461bcd60e51b815260040161062c90612b81565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611d61908490612adc565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611dc182888888888861201d565b50505050505050565b6000604051806080016040528060438152602001612dd26043913980516020918201208351848301516040808701518051908601209051611e2a950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000611e5260045490565b60405161190160f01b6020820152602281019190915260428101839052606201611e2a565b6001600160a01b0384163b156119a65760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611ebb9089908990889088908890600401612c31565b6020604051808303816000875af1925050508015611ef6575060408051601f3d908101601f19168201909252611ef391810190612c83565b60015b611fa257611f02612ca0565b806308c379a003611f3b5750611f16612cbb565b80611f215750611f3d565b8060405162461bcd60e51b815260040161062c9190612326565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161062c565b6001600160e01b0319811663bc197c8160e01b14611dc15760405162461bcd60e51b815260040161062c90612d44565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061200c5761200c612a7a565b602090810291909101015292915050565b6001600160a01b0384163b156119a65760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906120619089908990889088908890600401612d8c565b6020604051808303816000875af192505050801561209c575060408051601f3d908101601f1916820190925261209991810190612c83565b60015b6120a857611f02612ca0565b6001600160e01b0319811663f23a6e6160e01b14611dc15760405162461bcd60e51b815260040161062c90612d44565b8280546120e49061296d565b90600052602060002090601f016020900481019282612106576000855561214c565b82601f1061211f57805160ff191683800117855561214c565b8280016001018555821561214c579182015b8281111561214c578251825591602001919060010190612131565b5061215892915061215c565b5090565b5b80821115612158576000815560010161215d565b6001600160a01b038116811461070057600080fd5b6000806040838503121561219957600080fd5b82356121a481612171565b946020939093013593505050565b6001600160e01b03198116811461070057600080fd5b6000602082840312156121da57600080fd5b8135610b3c816121b2565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b0381118282101715612220576122206121e5565b6040525050565b600082601f83011261223857600080fd5b81356001600160401b03811115612251576122516121e5565b604051612268601f8301601f1916602001826121fb565b81815284602083860101111561227d57600080fd5b816020850160208301376000918101602001919091529392505050565b6000602082840312156122ac57600080fd5b81356001600160401b038111156122c257600080fd5b61149784828501612227565b60005b838110156122e95781810151838201526020016122d1565b838111156111f85750506000910152565b600081518084526123128160208601602086016122ce565b601f01601f19169290920160200192915050565b602081526000610b3c60208301846122fa565b600080600080600060a0868803121561235157600080fd5b853561235c81612171565b945060208601356001600160401b0381111561237757600080fd5b61238388828901612227565b9450506040860135925060608601359150608086013560ff811681146123a857600080fd5b809150509295509295909350565b6000602082840312156123c857600080fd5b5035919050565b6000602082840312156123e157600080fd5b8135610b3c81612171565b60006001600160401b03821115612405576124056121e5565b5060051b60200190565b600082601f83011261242057600080fd5b8135602061242d826123ec565b60405161243a82826121fb565b83815260059390931b850182019282810191508684111561245a57600080fd5b8286015b84811015612475578035835291830191830161245e565b509695505050505050565b600080600080600060a0868803121561249857600080fd5b85356124a381612171565b945060208601356124b381612171565b935060408601356001600160401b03808211156124cf57600080fd5b6124db89838a0161240f565b945060608801359150808211156124f157600080fd5b6124fd89838a0161240f565b9350608088013591508082111561251357600080fd5b5061252088828901612227565b9150509295509295909350565b600080600080600060a0868803121561254557600080fd5b853561255081612171565b9450602086013593506040860135925060608601356001600160401b038082111561257a57600080fd5b6124fd89838a01612227565b6000806040838503121561259957600080fd5b8235915060208301356001600160401b038111156125b657600080fd5b6125c285828601612227565b9150509250929050565b600082601f8301126125dd57600080fd5b813560206125ea826123ec565b6040516125f782826121fb565b83815260059390931b850182019282810191508684111561261757600080fd5b8286015b8481101561247557803561262e81612171565b835291830191830161261b565b6000806040838503121561264e57600080fd5b82356001600160401b038082111561266557600080fd5b612671868387016125cc565b9350602085013591508082111561268757600080fd5b506125c28582860161240f565b600081518084526020808501945080840160005b838110156126c4578151875295820195908201906001016126a8565b509495945050505050565b602081526000610b3c6020830184612694565b600080600080608085870312156126f857600080fd5b843561270381612171565b9350602085013592506040850135915060608501356001600160401b0381111561272c57600080fd5b61273887828801612227565b91505092959194509250565b6000806040838503121561275757600080fd5b823561276281612171565b91506020830135801515811461277757600080fd5b809150509250929050565b60008060006060848603121561279757600080fd5b83356001600160401b038111156127ad57600080fd5b6127b9868287016125cc565b9660208601359650604090950135949350505050565b600080600080608085870312156127e557600080fd5b84356127f081612171565b935060208501356001600160401b038082111561280c57600080fd5b6128188883890161240f565b9450604087013591508082111561282e57600080fd5b61283a8883890161240f565b9350606087013591508082111561285057600080fd5b5061273887828801612227565b6000806040838503121561287057600080fd5b823561287b81612171565b915060208301356001600160401b0381111561289657600080fd5b6125c28582860161240f565b600080604083850312156128b557600080fd5b82356128c081612171565b9150602083013561277781612171565b600080600080600060a086880312156128e857600080fd5b85356128f381612171565b9450602086013561290381612171565b9350604086013592506060860135915060808601356001600160401b0381111561292c57600080fd5b61252088828901612227565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061298157607f821691505b602082108103610b4357634e487b7160e01b600052602260045260246000fd5b6001600160a01b038481168252831660208201526060604082018190526000906129cd908301846122fa565b95945050505050565b600083516129e88184602088016122ce565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b60008251612a1f8184602087016122ce565b9190910192915050565b60208082526031908201527f455243313135355472616461626c652363726561746f724f6e6c793a204f4e4c6040820152701657d0d491505513d497d0531313d5d151607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201612ab857612ab8612a90565b5060010190565b600060208284031215612ad157600080fd5b8151610b3c81612171565b60008219821115612aef57612aef612a90565b500190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b604081526000612bde6040830185612694565b82810360208401526129cd8185612694565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6001600160a01b0386811682528516602082015260a060408201819052600090612c5d90830186612694565b8281036060840152612c6f8186612694565b9050828103608084015261096f81856122fa565b600060208284031215612c9557600080fd5b8151610b3c816121b2565b600060033d11156116485760046000803e5060005160e01c90565b600060443d1015612cc95790565b6040516003193d81016004833e81513d6001600160401b038160248401118184111715612cf857505050505090565b8285019150815181811115612d105750505050505090565b843d8701016020828501011115612d2a5750505050505090565b612d39602082860101876121fb565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090612dc6908301846122fa565b97965050505050505056fe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a26469706673582212201834bf0b061e0b101acb71d3f72f244cbc0d7277ae9a3cf77018eab75d74795b64736f6c634300080d0033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c742968747470733a2f2f70617261646973652e6d7970696e6174612e636c6f75642f697066732f516d6333433735507a4b75583331423978513263716f4647344a6343326e55623251747971464b395668384537642f312e6a736f6e68747470733a2f2f70617261646973652e6d7970696e6174612e636c6f75642f697066732f516d6333433735507a4b75583331423978513263716f4647344a6343326e55623251747971464b395668384537642f322e6a736f6e50617261646973652054726970706965732054726561737572652043686573747368747470733a2f2f70617261646973652e6d7970696e6174612e636c6f75642f697066732f516d6333433735507a4b75583331423978513263716f4647344a6343326e55623251747971464b395668384537642f332e6a736f6e

Deployed Bytecode

0x6080604052600436106101c15760003560e01c80634e1273f4116100f7578063a496dedf11610095578063d2a6b51a11610064578063d2a6b51a14610544578063e985e9c514610564578063f242432a14610584578063f2fde38b146105a457600080fd5b8063a496dedf146104a1578063b48ab8b6146104c1578063bd85b039146104e1578063cd53d08e1461050e57600080fd5b8063731133e9116100d1578063731133e91461041a5780638da5cb5b1461043a57806395d89b411461046c578063a22cb4651461048157600080fd5b80634e1273f4146103b85780634f558e79146103e5578063715018a61461040557600080fd5b806320379ee5116101645780632eb2c2d61161013e5780632eb2c2d6146103455780633408e4701461036557806336a100d5146103785780633adf80b41461039857600080fd5b806320379ee5146102cd5780632693ebf2146102e25780632d0335ab1461030f57600080fd5b806306fdde03116101a057806306fdde031461024b5780630c53c51c1461026d5780630e89341c146102805780630f7e5970146102a057600080fd5b8062fdd58e146101c657806301ffc9a7146101f957806302fe530514610229575b600080fd5b3480156101d257600080fd5b506101e66101e1366004612186565b6105c4565b6040519081526020015b60405180910390f35b34801561020557600080fd5b506102196102143660046121c8565b61065e565b60405190151581526020016101f0565b34801561023557600080fd5b5061024961024436600461229a565b6106ae565b005b34801561025757600080fd5b50610260610703565b6040516101f09190612326565b61026061027b366004612339565b610791565b34801561028c57600080fd5b5061026061029b3660046123b6565b61097b565b3480156102ac57600080fd5b50610260604051806040016040528060018152602001603160f81b81525081565b3480156102d957600080fd5b506004546101e6565b3480156102ee57600080fd5b506101e66102fd3660046123b6565b60096020526000908152604090205481565b34801561031b57600080fd5b506101e661032a3660046123cf565b6001600160a01b031660009081526005602052604090205490565b34801561035157600080fd5b50610249610360366004612480565b610b49565b34801561037157600080fd5b50466101e6565b34801561038457600080fd5b506101e661039336600461252d565b610bf2565b3480156103a457600080fd5b506102496103b3366004612586565b610d59565b3480156103c457600080fd5b506103d86103d336600461263b565b610df8565b6040516101f091906126cf565b3480156103f157600080fd5b506102196104003660046123b6565b610f21565b34801561041157600080fd5b50610249610f40565b34801561042657600080fd5b506102496104353660046126e2565b610f95565b34801561044657600080fd5b506006546001600160a01b03165b6040516001600160a01b0390911681526020016101f0565b34801561047857600080fd5b50610260611015565b34801561048d57600080fd5b5061024961049c366004612744565b611022565b3480156104ad57600080fd5b506102496104bc366004612782565b611135565b3480156104cd57600080fd5b506102496104dc3660046127cf565b6111fe565b3480156104ed57600080fd5b506101e66104fc3660046123b6565b60009081526009602052604090205490565b34801561051a57600080fd5b506104546105293660046123b6565b6008602052600090815260409020546001600160a01b031681565b34801561055057600080fd5b5061024961055f36600461285d565b611328565b34801561057057600080fd5b5061021961057f3660046128a2565b6113df565b34801561059057600080fd5b5061024961059f3660046128d0565b61149f565b3480156105b057600080fd5b506102496105bf3660046123cf565b611538565b60006001600160a01b0383166106355760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b60006001600160e01b03198216636cdb3d1360e11b148061068f57506001600160e01b031982166303a24d0760e21b145b8061065857506301ffc9a760e01b6001600160e01b0319831614610658565b6106b6611651565b6001600160a01b03166106d16006546001600160a01b031690565b6001600160a01b0316146106f75760405162461bcd60e51b815260040161062c90612938565b61070081611660565b50565b600b80546107109061296d565b80601f016020809104026020016040519081016040528092919081815260200182805461073c9061296d565b80156107895780601f1061075e57610100808354040283529160200191610789565b820191906000526020600020905b81548152906001019060200180831161076c57829003601f168201915b505050505081565b60408051606081810183526001600160a01b038816600081815260056020908152908590205484528301529181018690526107cf8782878787611677565b6108255760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b606482015260840161062c565b6001600160a01b038716600090815260056020526040902054610849906001611767565b6001600160a01b0388166000908152600560205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b9061089990899033908a906129a1565b60405180910390a1600080306001600160a01b0316888a6040516020016108c19291906129d6565b60408051601f19818403018152908290526108db91612a0d565b6000604051808303816000865af19150503d8060008114610918576040519150601f19603f3d011682016040523d82523d6000602084013e61091d565b606091505b50915091508161096f5760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000604482015260640161062c565b98975050505050505050565b6000818152600860205260409020546060906001600160a01b03166109f15760405162461bcd60e51b815260206004820152602660248201527f455243313135355472616461626c65237572693a204e4f4e4558495354454e546044820152652faa27a5a2a760d11b606482015260840161062c565b6000828152600a602052604081208054610a0a9061296d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a369061296d565b8015610a835780601f10610a5857610100808354040283529160200191610a83565b820191906000526020600020905b815481529060010190602001808311610a6657829003601f168201915b50505050509050600081511115610b33576000838152600a602052604090208054610aad9061296d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad99061296d565b8015610b265780601f10610afb57610100808354040283529160200191610b26565b820191906000526020600020905b815481529060010190602001808311610b0957829003601f168201915b5050505050915050919050565b610b3c83611773565b9392505050565b50919050565b610b51611651565b6001600160a01b0316856001600160a01b03161480610b775750610b778561057f611651565b610bde5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161062c565b610beb8585858585611807565b5050505050565b6000610bfc611651565b6001600160a01b0316610c176006546001600160a01b031690565b6001600160a01b031614610c3d5760405162461bcd60e51b815260040161062c90612938565b6000858152600860205260409020546001600160a01b031615610ca25760405162461bcd60e51b815260206004820152601860248201527f746f6b656e205f696420616c7265616479206578697374730000000000000000604482015260640161062c565b610caa611651565b600086815260086020526040902080546001600160a01b0319166001600160a01b0392909216919091179055825115610d36576000858152600a602090815260409091208451610cfc928601906120d8565b50847f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b84604051610d2d9190612326565b60405180910390a25b610d42868686856119ae565b505050600082815260096020526040902055919050565b81610d62611651565b6000828152600860205260409020546001600160a01b03908116911614610d9b5760405162461bcd60e51b815260040161062c90612a29565b6000838152600a602090815260409091208351610dba928501906120d8565b50827f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b83604051610deb9190612326565b60405180910390a2505050565b60608151835114610e5d5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161062c565b600083516001600160401b03811115610e7857610e786121e5565b604051908082528060200260200182016040528015610ea1578160200160208202803683370190505b50905060005b8451811015610f1957610eec858281518110610ec557610ec5612a7a565b6020026020010151858381518110610edf57610edf612a7a565b60200260200101516105c4565b828281518110610efe57610efe612a7a565b6020908102919091010152610f1281612aa6565b9050610ea7565b509392505050565b6000818152600860205260408120546001600160a01b03161515610658565b610f48611651565b6001600160a01b0316610f636006546001600160a01b031690565b6001600160a01b031614610f895760405162461bcd60e51b815260040161062c90612938565b610f936000611a89565b565b82610f9e611651565b6000828152600860205260409020546001600160a01b03908116911614610fd75760405162461bcd60e51b815260040161062c90612a29565b610fe3858585856119ae565b600084815260096020526040902054610ffc9084611767565b6000948552600960205260409094209390935550505050565b600c80546107109061296d565b816001600160a01b0316611034611651565b6001600160a01b03160361109c5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161062c565b80600160006110a9611651565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556110ed611651565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611129911515815260200190565b60405180910390a35050565b61113d611651565b6001600160a01b03166111586006546001600160a01b031690565b6001600160a01b03161461117e5760405162461bcd60e51b815260040161062c90612938565b60005b83518110156111f8576111be84828151811061119f5761119f612a7a565b60200260200101518385604051806020016040528060008152506119ae565b6000828152600960205260409020546111d79084611767565b600083815260096020526040902055806111f081612aa6565b915050611181565b50505050565b60005b835181101561131b57600084828151811061121e5761121e612a7a565b60200260200101519050611230611651565b6000828152600860205260409020546001600160a01b039081169116146112b15760405162461bcd60e51b815260206004820152602f60248201527f455243313135355472616461626c652362617463684d696e743a204f4e4c595f60448201526e10d491505513d497d0531313d5d151608a1b606482015260840161062c565b60008483815181106112c5576112c5612a7a565b602002602001015190506112f581600960008581526020019081526020016000205461176790919063ffffffff16565b60009283526009602052604090922091909155508061131381612aa6565b915050611201565b506111f884848484611adb565b6001600160a01b0382166113935760405162461bcd60e51b815260206004820152602c60248201527f455243313135355472616461626c652373657443726561746f723a20494e564160448201526b2624a22fa0a2222922a9a99760a11b606482015260840161062c565b60005b81518110156113da5760008282815181106113b3576113b3612a7a565b602002602001015190506113c78482611c31565b50806113d281612aa6565b915050611396565b505050565b60075460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c455279190602401602060405180830381865afa158015611431573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114559190612abf565b6001600160a01b03160361146d576001915050610658565b6001600160a01b0380851660009081526001602090815260408083209387168352929052205460ff165b949350505050565b6114a7611651565b6001600160a01b0316856001600160a01b031614806114cd57506114cd8561057f611651565b61152b5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b606482015260840161062c565b610beb8585858585611ca2565b611540611651565b6001600160a01b031661155b6006546001600160a01b031690565b6001600160a01b0316146115815760405162461bcd60e51b815260040161062c90612938565b6001600160a01b0381166115e65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161062c565b61070081611a89565b600030330361164557600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506116489050565b50335b90565b3b151590565b600061165b6115ef565b905090565b80516116739060029060208401906120d8565b5050565b60006001600160a01b0386166116dd5760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b606482015260840161062c565b60016116f06116eb87611dca565b611e47565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa15801561173e573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000610b3c8284612adc565b6060600280546117829061296d565b80601f01602080910402602001604051908101604052809291908181526020018280546117ae9061296d565b80156117fb5780601f106117d0576101008083540402835291602001916117fb565b820191906000526020600020905b8154815290600101906020018083116117de57829003601f168201915b50505050509050919050565b81518351146118285760405162461bcd60e51b815260040161062c90612af4565b6001600160a01b03841661184e5760405162461bcd60e51b815260040161062c90612b3c565b6000611858611651565b905060005b845181101561194057600085828151811061187a5761187a612a7a565b60200260200101519050600085838151811061189857611898612a7a565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156118e85760405162461bcd60e51b815260040161062c90612b81565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611925908490612adc565b925050819055505050508061193990612aa6565b905061185d565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611990929190612bcb565b60405180910390a46119a6818787878787611e77565b505050505050565b6001600160a01b0384166119d45760405162461bcd60e51b815260040161062c90612bf0565b60006119de611651565b90506119f9816000876119f088611fd2565b610beb88611fd2565b6000848152602081815260408083206001600160a01b038916845290915281208054859290611a29908490612adc565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610beb8160008787878761201d565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038416611b015760405162461bcd60e51b815260040161062c90612bf0565b8151835114611b225760405162461bcd60e51b815260040161062c90612af4565b6000611b2c611651565b905060005b8451811015611bc957838181518110611b4c57611b4c612a7a565b6020026020010151600080878481518110611b6957611b69612a7a565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000206000828254611bb19190612adc565b90915550819050611bc181612aa6565b915050611b31565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611c1a929190612bcb565b60405180910390a4610beb81600087878787611e77565b80611c3a611651565b6000828152600860205260409020546001600160a01b03908116911614611c735760405162461bcd60e51b815260040161062c90612a29565b50600090815260086020526040902080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038416611cc85760405162461bcd60e51b815260040161062c90612b3c565b6000611cd2611651565b9050611ce38187876119f088611fd2565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015611d245760405162461bcd60e51b815260040161062c90612b81565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611d61908490612adc565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611dc182888888888861201d565b50505050505050565b6000604051806080016040528060438152602001612dd26043913980516020918201208351848301516040808701518051908601209051611e2a950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000611e5260045490565b60405161190160f01b6020820152602281019190915260428101839052606201611e2a565b6001600160a01b0384163b156119a65760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611ebb9089908990889088908890600401612c31565b6020604051808303816000875af1925050508015611ef6575060408051601f3d908101601f19168201909252611ef391810190612c83565b60015b611fa257611f02612ca0565b806308c379a003611f3b5750611f16612cbb565b80611f215750611f3d565b8060405162461bcd60e51b815260040161062c9190612326565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161062c565b6001600160e01b0319811663bc197c8160e01b14611dc15760405162461bcd60e51b815260040161062c90612d44565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061200c5761200c612a7a565b602090810291909101015292915050565b6001600160a01b0384163b156119a65760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906120619089908990889088908890600401612d8c565b6020604051808303816000875af192505050801561209c575060408051601f3d908101601f1916820190925261209991810190612c83565b60015b6120a857611f02612ca0565b6001600160e01b0319811663f23a6e6160e01b14611dc15760405162461bcd60e51b815260040161062c90612d44565b8280546120e49061296d565b90600052602060002090601f016020900481019282612106576000855561214c565b82601f1061211f57805160ff191683800117855561214c565b8280016001018555821561214c579182015b8281111561214c578251825591602001919060010190612131565b5061215892915061215c565b5090565b5b80821115612158576000815560010161215d565b6001600160a01b038116811461070057600080fd5b6000806040838503121561219957600080fd5b82356121a481612171565b946020939093013593505050565b6001600160e01b03198116811461070057600080fd5b6000602082840312156121da57600080fd5b8135610b3c816121b2565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b0381118282101715612220576122206121e5565b6040525050565b600082601f83011261223857600080fd5b81356001600160401b03811115612251576122516121e5565b604051612268601f8301601f1916602001826121fb565b81815284602083860101111561227d57600080fd5b816020850160208301376000918101602001919091529392505050565b6000602082840312156122ac57600080fd5b81356001600160401b038111156122c257600080fd5b61149784828501612227565b60005b838110156122e95781810151838201526020016122d1565b838111156111f85750506000910152565b600081518084526123128160208601602086016122ce565b601f01601f19169290920160200192915050565b602081526000610b3c60208301846122fa565b600080600080600060a0868803121561235157600080fd5b853561235c81612171565b945060208601356001600160401b0381111561237757600080fd5b61238388828901612227565b9450506040860135925060608601359150608086013560ff811681146123a857600080fd5b809150509295509295909350565b6000602082840312156123c857600080fd5b5035919050565b6000602082840312156123e157600080fd5b8135610b3c81612171565b60006001600160401b03821115612405576124056121e5565b5060051b60200190565b600082601f83011261242057600080fd5b8135602061242d826123ec565b60405161243a82826121fb565b83815260059390931b850182019282810191508684111561245a57600080fd5b8286015b84811015612475578035835291830191830161245e565b509695505050505050565b600080600080600060a0868803121561249857600080fd5b85356124a381612171565b945060208601356124b381612171565b935060408601356001600160401b03808211156124cf57600080fd5b6124db89838a0161240f565b945060608801359150808211156124f157600080fd5b6124fd89838a0161240f565b9350608088013591508082111561251357600080fd5b5061252088828901612227565b9150509295509295909350565b600080600080600060a0868803121561254557600080fd5b853561255081612171565b9450602086013593506040860135925060608601356001600160401b038082111561257a57600080fd5b6124fd89838a01612227565b6000806040838503121561259957600080fd5b8235915060208301356001600160401b038111156125b657600080fd5b6125c285828601612227565b9150509250929050565b600082601f8301126125dd57600080fd5b813560206125ea826123ec565b6040516125f782826121fb565b83815260059390931b850182019282810191508684111561261757600080fd5b8286015b8481101561247557803561262e81612171565b835291830191830161261b565b6000806040838503121561264e57600080fd5b82356001600160401b038082111561266557600080fd5b612671868387016125cc565b9350602085013591508082111561268757600080fd5b506125c28582860161240f565b600081518084526020808501945080840160005b838110156126c4578151875295820195908201906001016126a8565b509495945050505050565b602081526000610b3c6020830184612694565b600080600080608085870312156126f857600080fd5b843561270381612171565b9350602085013592506040850135915060608501356001600160401b0381111561272c57600080fd5b61273887828801612227565b91505092959194509250565b6000806040838503121561275757600080fd5b823561276281612171565b91506020830135801515811461277757600080fd5b809150509250929050565b60008060006060848603121561279757600080fd5b83356001600160401b038111156127ad57600080fd5b6127b9868287016125cc565b9660208601359650604090950135949350505050565b600080600080608085870312156127e557600080fd5b84356127f081612171565b935060208501356001600160401b038082111561280c57600080fd5b6128188883890161240f565b9450604087013591508082111561282e57600080fd5b61283a8883890161240f565b9350606087013591508082111561285057600080fd5b5061273887828801612227565b6000806040838503121561287057600080fd5b823561287b81612171565b915060208301356001600160401b0381111561289657600080fd5b6125c28582860161240f565b600080604083850312156128b557600080fd5b82356128c081612171565b9150602083013561277781612171565b600080600080600060a086880312156128e857600080fd5b85356128f381612171565b9450602086013561290381612171565b9350604086013592506060860135915060808601356001600160401b0381111561292c57600080fd5b61252088828901612227565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061298157607f821691505b602082108103610b4357634e487b7160e01b600052602260045260246000fd5b6001600160a01b038481168252831660208201526060604082018190526000906129cd908301846122fa565b95945050505050565b600083516129e88184602088016122ce565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b60008251612a1f8184602087016122ce565b9190910192915050565b60208082526031908201527f455243313135355472616461626c652363726561746f724f6e6c793a204f4e4c6040820152701657d0d491505513d497d0531313d5d151607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201612ab857612ab8612a90565b5060010190565b600060208284031215612ad157600080fd5b8151610b3c81612171565b60008219821115612aef57612aef612a90565b500190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b604081526000612bde6040830185612694565b82810360208401526129cd8185612694565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6001600160a01b0386811682528516602082015260a060408201819052600090612c5d90830186612694565b8281036060840152612c6f8186612694565b9050828103608084015261096f81856122fa565b600060208284031215612c9557600080fd5b8151610b3c816121b2565b600060033d11156116485760046000803e5060005160e01c90565b600060443d1015612cc95790565b6040516003193d81016004833e81513d6001600160401b038160248401118184111715612cf857505050505090565b8285019150815181811115612d105750505050505090565b843d8701016020828501011115612d2a5750505050505090565b612d39602082860101876121fb565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090612dc6908301846122fa565b97965050505050505056fe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a26469706673582212201834bf0b061e0b101acb71d3f72f244cbc0d7277ae9a3cf77018eab75d74795b64736f6c634300080d0033

Deployed Bytecode Sourcemap

61001:1020:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24748:318;;;;;;;;;;-1:-1:-1;24748:318:0;;;;;:::i;:::-;;:::i;:::-;;;616:25:1;;;604:2;589:18;24748:318:0;;;;;;;;23721:360;;;;;;;;;;-1:-1:-1;23721:360:0;;;;;:::i;:::-;;:::i;:::-;;;1203:14:1;;1196:22;1178:41;;1166:2;1151:18;23721:360:0;1038:187:1;55206:91:0;;;;;;;;;;-1:-1:-1;55206:91:0;;;;;:::i;:::-;;:::i;:::-;;53260:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;50318:1151::-;;;;;;:::i;:::-;;:::i;54232:428::-;;;;;;;;;;-1:-1:-1;54232:428:0;;;;;:::i;:::-;;:::i;47572:43::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47572:43:0;;;;;48567:101;;;;;;;;;;-1:-1:-1;48645:15:0;;48567:101;;53142:46;;;;;;;;;;-1:-1:-1;53142:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;51895:107;;;;;;;;;;-1:-1:-1;51895:107:0;;;;;:::i;:::-;-1:-1:-1;;;;;51982:12:0;51948:13;51982:12;;;:6;:12;;;;;;;51895:107;27086:442;;;;;;;;;;-1:-1:-1;27086:442:0;;;;;:::i;:::-;;:::i;48676:161::-;;;;;;;;;;-1:-1:-1;48790:9:0;48676:161;;56840:561;;;;;;;;;;-1:-1:-1;56840:561:0;;;;;:::i;:::-;;:::i;55500:201::-;;;;;;;;;;-1:-1:-1;55500:201:0;;;;;:::i;:::-;;:::i;25232:561::-;;;;;;;;;;-1:-1:-1;25232:561:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;60634:96::-;;;;;;;;;;-1:-1:-1;60634:96:0;;;;;:::i;:::-;;:::i;4527:94::-;;;;;;;;;;;;;:::i;57714:267::-;;;;;;;;;;-1:-1:-1;57714:267:0;;;;;:::i;:::-;;:::i;3876:87::-;;;;;;;;;;-1:-1:-1;3949:6:0;;-1:-1:-1;;;;;3949:6:0;3876:87;;;-1:-1:-1;;;;;10942:32:1;;;10924:51;;10912:2;10897:18;3876:87:0;10778:203:1;53309:20:0;;;;;;;;;;;;;:::i;25866:380::-;;;;;;;;;;-1:-1:-1;25866:380:0;;;;;:::i;:::-;;:::i;61703:315::-;;;;;;;;;;-1:-1:-1;61703:315:0;;;;;:::i;:::-;;:::i;58294:580::-;;;;;;;;;;-1:-1:-1;58294:580:0;;;;;:::i;:::-;;:::i;54838:106::-;;;;;;;;;;-1:-1:-1;54838:106:0;;;;;:::i;:::-;54893:7;54920:16;;;:11;:16;;;;;;;54838:106;53092:43;;;;;;;;;;-1:-1:-1;53092:43:0;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;53092:43:0;;;59063:327;;;;;;;;;;-1:-1:-1;59063:327:0;;;;;:::i;:::-;;:::i;59522:464::-;;;;;;;;;;-1:-1:-1;59522:464:0;;;;;:::i;:::-;;:::i;26608:401::-;;;;;;;;;;-1:-1:-1;26608:401:0;;;;;:::i;:::-;;:::i;4776:229::-;;;;;;;;;;-1:-1:-1;4776:229:0;;;;;:::i;:::-;;:::i;24748:318::-;24879:7;-1:-1:-1;;;;;24926:21:0;;24904:114;;;;-1:-1:-1;;;24904:114:0;;14654:2:1;24904:114:0;;;14636:21:1;14693:2;14673:18;;;14666:30;14732:34;14712:18;;;14705:62;-1:-1:-1;;;14783:18:1;;;14776:41;14834:19;;24904:114:0;;;;;;;;;-1:-1:-1;25036:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;25036:22:0;;;;;;;;;;24748:318;;;;;:::o;23721:360::-;23868:4;-1:-1:-1;;;;;;23910:41:0;;-1:-1:-1;;;23910:41:0;;:110;;-1:-1:-1;;;;;;;23968:52:0;;-1:-1:-1;;;23968:52:0;23910:110;:163;;;-1:-1:-1;;;;;;;;;;15468:40:0;;;24037:36;15309:207;55206:91;4107:12;:10;:12::i;:::-;-1:-1:-1;;;;;4096:23:0;:7;3949:6;;-1:-1:-1;;;;;3949:6:0;;3876:87;4096:7;-1:-1:-1;;;;;4096:23:0;;4088:68;;;;-1:-1:-1;;;4088:68:0;;;;;;;:::i;:::-;55273:16:::1;55281:7;55273;:16::i;:::-;55206:91:::0;:::o;53260:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50318:1151::-;50576:152;;;50519:12;50576:152;;;;;-1:-1:-1;;;;;50614:19:0;;50544:29;50614:19;;;:6;:19;;;;;;;;;50576:152;;;;;;;;;;;50763:45;50621:11;50576:152;50791:4;50797;50803;50763:6;:45::i;:::-;50741:128;;;;-1:-1:-1;;;50741:128:0;;15812:2:1;50741:128:0;;;15794:21:1;15851:2;15831:18;;;15824:30;15890:34;15870:18;;;15863:62;-1:-1:-1;;;15941:18:1;;;15934:31;15982:19;;50741:128:0;15610:397:1;50741:128:0;-1:-1:-1;;;;;50958:19:0;;;;;;:6;:19;;;;;;:26;;50982:1;50958:23;:26::i;:::-;-1:-1:-1;;;;;50936:19:0;;;;;;:6;:19;;;;;;;:48;;;;51002:126;;;;;50943:11;;51074:10;;51100:17;;51002:126;:::i;:::-;;;;;;;;51239:12;51253:23;51288:4;-1:-1:-1;;;;;51280:18:0;51330:17;51349:11;51313:48;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;51313:48:0;;;;;;;;;;51280:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51238:134;;;;51391:7;51383:48;;;;-1:-1:-1;;;51383:48:0;;17350:2:1;51383:48:0;;;17332:21:1;17389:2;17369:18;;;17362:30;17428;17408:18;;;17401:58;17476:18;;51383:48:0;17148:352:1;51383:48:0;51451:10;50318:1151;-1:-1:-1;;;;;;;;50318:1151:0:o;54232:428::-;60567:4;60591:13;;;:8;:13;;;;;;54288;;-1:-1:-1;;;;;60591:13:0;54314:63;;;;-1:-1:-1;;;54314:63:0;;17707:2:1;54314:63:0;;;17689:21:1;17746:2;17726:18;;;17719:30;17785:34;17765:18;;;17758:62;-1:-1:-1;;;17836:18:1;;;17829:36;17882:19;;54314:63:0;17505:402:1;54314:63:0;54458:27;54494:14;;;:9;:14;;;;;54458:51;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54548:1;54524:14;:21;:25;54520:133;;;54573:14;;;;:9;:14;;;;;54566:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54232:428;;;:::o;54520:133::-;54627:14;54637:3;54627:9;:14::i;:::-;54620:21;54232:428;-1:-1:-1;;;54232:428:0:o;54520:133::-;54303:357;54232:428;;;:::o;27086:442::-;27327:12;:10;:12::i;:::-;-1:-1:-1;;;;;27319:20:0;:4;-1:-1:-1;;;;;27319:20:0;;:60;;;;27343:36;27360:4;27366:12;:10;:12::i;27343:36::-;27297:160;;;;-1:-1:-1;;;27297:160:0;;18114:2:1;27297:160:0;;;18096:21:1;18153:2;18133:18;;;18126:30;18192:34;18172:18;;;18165:62;-1:-1:-1;;;18243:18:1;;;18236:48;18301:19;;27297:160:0;17912:414:1;27297:160:0;27468:52;27491:4;27497:2;27501:3;27506:7;27515:4;27468:22;:52::i;:::-;27086:442;;;;;:::o;56840:561::-;57034:7;4107:12;:10;:12::i;:::-;-1:-1:-1;;;;;4096:23:0;:7;3949:6;;-1:-1:-1;;;;;3949:6:0;;3876:87;4096:7;-1:-1:-1;;;;;4096:23:0;;4088:68;;;;-1:-1:-1;;;4088:68:0;;;;;;;:::i;:::-;60567:4;60591:13;;;:8;:13;;;;;;-1:-1:-1;;;;;60591:13:0;:27;57054:50:::1;;;::::0;-1:-1:-1;;;57054:50:0;;18533:2:1;57054:50:0::1;::::0;::::1;18515:21:1::0;18572:2;18552:18;;;18545:30;18611:26;18591:18;;;18584:54;18655:18;;57054:50:0::1;18331:348:1::0;57054:50:0::1;57131:12;:10;:12::i;:::-;57115:13;::::0;;;:8:::1;:13;::::0;;;;:28;;-1:-1:-1;;;;;;57115:28:0::1;-1:-1:-1::0;;;;;57115:28:0;;;::::1;::::0;;;::::1;::::0;;57160:18;;:22;57156:110:::1;;57199:14;::::0;;;:9:::1;:14;::::0;;;;;;;:21;;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;;57250:3;57240:14;57244:4;57240:14;;;;;;:::i;:::-;;;;;;;;57156:110;57278:48;57284:13;57299:3;57304:14;57320:5;57278;:48::i;:::-;-1:-1:-1::0;;;57339:16:0::1;::::0;;;:11:::1;:16;::::0;;;;:33;:16;56840:561;-1:-1:-1;56840:561:0:o;55500:201::-;55600:8;53508:12;:10;:12::i;:::-;53491:13;;;;:8;:13;;;;;;-1:-1:-1;;;;;53491:13:0;;;:29;;;53469:128;;;;-1:-1:-1;;;53469:128:0;;;;;;;:::i;:::-;55626:19:::1;::::0;;;:9:::1;:19;::::0;;;;;;;:29;;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;;55684:8;55671:22;55675:7;55671:22;;;;;;:::i;:::-;;;;;;;;55500:201:::0;;;:::o;25232:561::-;25388:16;25463:3;:10;25444:8;:15;:29;25422:120;;;;-1:-1:-1;;;25422:120:0;;19304:2:1;25422:120:0;;;19286:21:1;19343:2;19323:18;;;19316:30;19382:34;19362:18;;;19355:62;-1:-1:-1;;;19433:18:1;;;19426:39;19482:19;;25422:120:0;19102:405:1;25422:120:0;25555:30;25602:8;:15;-1:-1:-1;;;;;25588:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25588:30:0;;25555:63;;25636:9;25631:122;25655:8;:15;25651:1;:19;25631:122;;;25711:30;25721:8;25730:1;25721:11;;;;;;;;:::i;:::-;;;;;;;25734:3;25738:1;25734:6;;;;;;;;:::i;:::-;;;;;;;25711:9;:30::i;:::-;25692:13;25706:1;25692:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;25672:3;;;:::i;:::-;;;25631:122;;;-1:-1:-1;25772:13:0;25232:561;-1:-1:-1;;;25232:561:0:o;60634:96::-;60686:4;60591:13;;;:8;:13;;;;;;-1:-1:-1;;;;;60591:13:0;:27;;60710:12;60514:112;4527:94;4107:12;:10;:12::i;:::-;-1:-1:-1;;;;;4096:23:0;:7;3949:6;;-1:-1:-1;;;;;3949:6:0;;3876:87;4096:7;-1:-1:-1;;;;;4096:23:0;;4088:68;;;;-1:-1:-1;;;4088:68:0;;;;;;;:::i;:::-;4592:21:::1;4610:1;4592:9;:21::i;:::-;4527:94::o:0;57714:267::-;57863:3;53508:12;:10;:12::i;:::-;53491:13;;;;:8;:13;;;;;;-1:-1:-1;;;;;53491:13:0;;;:29;;;53469:128;;;;-1:-1:-1;;;53469:128:0;;;;;;;:::i;:::-;57879:33:::1;57885:3;57890;57895:9;57906:5;57879;:33::i;:::-;57942:16;::::0;;;:11:::1;:16;::::0;;;;;:31:::1;::::0;57963:9;57942:20:::1;:31::i;:::-;57923:16;::::0;;;:11:::1;:16;::::0;;;;;:50;;;;-1:-1:-1;;;;57714:267:0:o;53309:20::-;;;;;;;:::i;25866:380::-;26031:8;-1:-1:-1;;;;;26015:24:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;26015:24:0;;25993:115;;;;-1:-1:-1;;;25993:115:0;;20118:2:1;25993:115:0;;;20100:21:1;20157:2;20137:18;;;20130:30;20196:34;20176:18;;;20169:62;-1:-1:-1;;;20247:18:1;;;20240:39;20296:19;;25993:115:0;19916:405:1;25993:115:0;26166:8;26121:18;:32;26140:12;:10;:12::i;:::-;-1:-1:-1;;;;;26121:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;26121:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;26121:53:0;;;;;;;;;;;26205:12;:10;:12::i;:::-;-1:-1:-1;;;;;26190:48:0;;26229:8;26190:48;;;;1203:14:1;1196:22;1178:41;;1166:2;1151:18;;1038:187;26190:48:0;;;;;;;;25866:380;;:::o;61703:315::-;4107:12;:10;:12::i;:::-;-1:-1:-1;;;;;4096:23:0;:7;3949:6;;-1:-1:-1;;;;;3949:6:0;;3876:87;4096:7;-1:-1:-1;;;;;4096:23:0;;4088:68;;;;-1:-1:-1;;;4088:68:0;;;;;;;:::i;:::-;61844:9:::1;61839:172;61863:6;:13;61859:1;:17;61839:172;;;61898:36;61904:6;61911:1;61904:9;;;;;;;;:::i;:::-;;;;;;;61915:3;61920:9;61898:36;;;;;;;;;;;::::0;:5:::1;:36::i;:::-;61968:16;::::0;;;:11:::1;:16;::::0;;;;;:31:::1;::::0;61989:9;61968:20:::1;:31::i;:::-;61949:16;::::0;;;:11:::1;:16;::::0;;;;:50;61878:3;::::1;::::0;::::1;:::i;:::-;;;;61839:172;;;;61703:315:::0;;;:::o;58294:580::-;58465:9;58460:355;58484:4;:11;58480:1;:15;58460:355;;;58517:11;58531:4;58536:1;58531:7;;;;;;;;:::i;:::-;;;;;;;58517:21;;58596:12;:10;:12::i;:::-;58579:13;;;;:8;:13;;;;;;-1:-1:-1;;;;;58579:13:0;;;:29;;;58553:138;;;;-1:-1:-1;;;58553:138:0;;20528:2:1;58553:138:0;;;20510:21:1;20567:2;20547:18;;;20540:30;20606:34;20586:18;;;20579:62;-1:-1:-1;;;20657:18:1;;;20650:45;20712:19;;58553:138:0;20326:411:1;58553:138:0;58706:16;58725:11;58737:1;58725:14;;;;;;;;:::i;:::-;;;;;;;58706:33;;58773:30;58794:8;58773:11;:16;58785:3;58773:16;;;;;;;;;;;;:20;;:30;;;;:::i;:::-;58754:16;;;;:11;:16;;;;;;:49;;;;-1:-1:-1;58497:3:0;;;;:::i;:::-;;;;58460:355;;;;58825:41;58836:3;58841:4;58847:11;58860:5;58825:10;:41::i;59063:327::-;-1:-1:-1;;;;;59159:17:0;;59137:111;;;;-1:-1:-1;;;59137:111:0;;20944:2:1;59137:111:0;;;20926:21:1;20983:2;20963:18;;;20956:30;21022:34;21002:18;;;20995:62;-1:-1:-1;;;21073:18:1;;;21066:42;21125:19;;59137:111:0;20742:408:1;59137:111:0;59264:9;59259:124;59283:4;:11;59279:1;:15;59259:124;;;59316:10;59329:4;59334:1;59329:7;;;;;;;;:::i;:::-;;;;;;;59316:20;;59351;59363:3;59368:2;59351:11;:20::i;:::-;-1:-1:-1;59296:3:0;;;;:::i;:::-;;;;59259:124;;;;59063:327;;:::o;59522:464::-;59789:20;;59833:29;;-1:-1:-1;;;59833:29:0;;-1:-1:-1;;;;;10942:32:1;;;59833:29:0;;;10924:51:1;59649:15:0;;59789:20;;;59825:51;;;;59789:20;;59833:21;;10897:18:1;;59833:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;59825:51:0;;59821:95;;59900:4;59893:11;;;;;59821:95;-1:-1:-1;;;;;26491:27:0;;;26462:4;26491:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;59935:43;59928:50;59522:464;-1:-1:-1;;;;59522:464:0:o;26608:401::-;26824:12;:10;:12::i;:::-;-1:-1:-1;;;;;26816:20:0;:4;-1:-1:-1;;;;;26816:20:0;;:60;;;;26840:36;26857:4;26863:12;:10;:12::i;26840:36::-;26794:151;;;;-1:-1:-1;;;26794:151:0;;21642:2:1;26794:151:0;;;21624:21:1;21681:2;21661:18;;;21654:30;21720:34;21700:18;;;21693:62;-1:-1:-1;;;21771:18:1;;;21764:39;21820:19;;26794:151:0;21440:405:1;26794:151:0;26956:45;26974:4;26980:2;26984;26988:6;26996:4;26956:17;:45::i;4776:229::-;4107:12;:10;:12::i;:::-;-1:-1:-1;;;;;4096:23:0;:7;3949:6;;-1:-1:-1;;;;;3949:6:0;;3876:87;4096:7;-1:-1:-1;;;;;4096:23:0;;4088:68;;;;-1:-1:-1;;;4088:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4879:22:0;::::1;4857:110;;;::::0;-1:-1:-1;;;4857:110:0;;22052:2:1;4857:110:0::1;::::0;::::1;22034:21:1::0;22091:2;22071:18;;;22064:30;22130:34;22110:18;;;22103:62;-1:-1:-1;;;22181:18:1;;;22174:36;22227:19;;4857:110:0::1;21850:402:1::0;4857:110:0::1;4978:19;4988:8;4978:9;:19::i;46584:618::-:0;46628:22;46689:4;46667:10;:27;46663:508;;46711:18;46732:8;;46711:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;46771:8:0;46982:17;46976:24;-1:-1:-1;;;;;46950:134:0;;-1:-1:-1;46663:508:0;;-1:-1:-1;46663:508:0;;-1:-1:-1;47148:10:0;46663:508;46584:618;:::o;5928:387::-;6251:20;6299:8;;;5928:387::o;60874:120::-;60928:14;60962:24;:22;:24::i;:::-;60955:31;;60874:120;:::o;31389:88::-;31456:13;;;;:4;;:13;;;;;:::i;:::-;;31389:88;:::o;52010:486::-;52188:4;-1:-1:-1;;;;;52213:20:0;;52205:70;;;;-1:-1:-1;;;52205:70:0;;22459:2:1;52205:70:0;;;22441:21:1;22498:2;22478:18;;;22471:30;22537:34;22517:18;;;22510:62;-1:-1:-1;;;22588:18:1;;;22581:35;22633:19;;52205:70:0;22257:401:1;52205:70:0;52329:159;52357:47;52376:27;52396:6;52376:19;:27::i;:::-;52357:18;:47::i;:::-;52329:159;;;;;;;;;;;;22890:25:1;;;;22963:4;22951:17;;22931:18;;;22924:45;22985:18;;;22978:34;;;23028:18;;;23021:34;;;22862:19;;52329:159:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52306:182:0;:6;-1:-1:-1;;;;;52306:182:0;;52286:202;;52010:486;;;;;;;:::o;42154:98::-;42212:7;42239:5;42243:1;42239;:5;:::i;24492:105::-;24552:13;24585:4;24578:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24492:105;;;:::o;29296:1249::-;29537:7;:14;29523:3;:10;:28;29501:118;;;;-1:-1:-1;;;29501:118:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29638:16:0;;29630:66;;;;-1:-1:-1;;;29630:66:0;;;;;;;:::i;:::-;29709:16;29728:12;:10;:12::i;:::-;29709:31;;29831:9;29826:470;29850:3;:10;29846:1;:14;29826:470;;;29882:10;29895:3;29899:1;29895:6;;;;;;;;:::i;:::-;;;;;;;29882:19;;29916:14;29933:7;29941:1;29933:10;;;;;;;;:::i;:::-;;;;;;;;;;;;29960:19;29982:13;;;;;;;;;;-1:-1:-1;;;;;29982:19:0;;;;;;;;;;;;29933:10;;-1:-1:-1;30042:21:0;;;;30016:125;;;;-1:-1:-1;;;30016:125:0;;;;;;;:::i;:::-;30185:9;:13;;;;;;;;;;;-1:-1:-1;;;;;30185:19:0;;;;;;;;;;30207:20;;;30185:42;;30257:17;;;;;;;:27;;30207:20;;30185:9;30257:27;;30207:20;;30257:27;:::i;:::-;;;;;;;;29867:429;;;29862:3;;;;:::i;:::-;;;29826:470;;;;30343:2;-1:-1:-1;;;;;30313:47:0;30337:4;-1:-1:-1;;;;;30313:47:0;30327:8;-1:-1:-1;;;;;30313:47:0;;30347:3;30352:7;30313:47;;;;;;;:::i;:::-;;;;;;;;30373:164;30423:8;30446:4;30465:2;30482:3;30500:7;30522:4;30373:35;:164::i;:::-;29490:1055;29296:1249;;;;;:::o;31878:777::-;-1:-1:-1;;;;;32036:21:0;;32028:67;;;;-1:-1:-1;;;32028:67:0;;;;;;;:::i;:::-;32108:16;32127:12;:10;:12::i;:::-;32108:31;;32152:196;32187:8;32218:1;32235:7;32257:21;32275:2;32257:17;:21::i;:::-;32293:25;32311:6;32293:17;:25::i;32152:196::-;32361:9;:13;;;;;;;;;;;-1:-1:-1;;;;;32361:22:0;;;;;;;;;:32;;32387:6;;32361:9;:32;;32387:6;;32361:32;:::i;:::-;;;;-1:-1:-1;;32409:57:0;;;25471:25:1;;;25527:2;25512:18;;25505:34;;;-1:-1:-1;;;;;32409:57:0;;;;32442:1;;32409:57;;;;;;25444:18:1;32409:57:0;;;;;;;32479:168;32524:8;32555:1;32572:7;32594:2;32611:6;32632:4;32479:30;:168::i;5013:173::-;5088:6;;;-1:-1:-1;;;;;5105:17:0;;;-1:-1:-1;;;;;;5105:17:0;;;;;;;5138:40;;5088:6;;;5105:17;5088:6;;5138:40;;5069:16;;5138:40;5058:128;5013:173;:::o;33011:861::-;-1:-1:-1;;;;;33189:16:0;;33181:62;;;;-1:-1:-1;;;33181:62:0;;;;;;;:::i;:::-;33290:7;:14;33276:3;:10;:28;33254:118;;;;-1:-1:-1;;;33254:118:0;;;;;;;:::i;:::-;33385:16;33404:12;:10;:12::i;:::-;33385:31;;33513:9;33508:103;33532:3;:10;33528:1;:14;33508:103;;;33589:7;33597:1;33589:10;;;;;;;;:::i;:::-;;;;;;;33564:9;:17;33574:3;33578:1;33574:6;;;;;;;;:::i;:::-;;;;;;;33564:17;;;;;;;;;;;:21;33582:2;-1:-1:-1;;;;;33564:21:0;-1:-1:-1;;;;;33564:21:0;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;-1:-1:-1;33544:3:0;;-1:-1:-1;33544:3:0;;;:::i;:::-;;;;33508:103;;;;33664:2;-1:-1:-1;;;;;33628:53:0;33660:1;-1:-1:-1;;;;;33628:53:0;33642:8;-1:-1:-1;;;;;33628:53:0;;33668:3;33673:7;33628:53;;;;;;;:::i;:::-;;;;;;;;33694:170;33744:8;33775:1;33792:2;33809:3;33827:7;33849:4;33694:35;:170::i;60167:111::-;60235:3;53508:12;:10;:12::i;:::-;53491:13;;;;:8;:13;;;;;;-1:-1:-1;;;;;53491:13:0;;;:29;;;53469:128;;;;-1:-1:-1;;;53469:128:0;;;;;;;:::i;:::-;-1:-1:-1;60251:13:0::1;::::0;;;:8:::1;:13;::::0;;;;:19;;-1:-1:-1;;;;;;60251:19:0::1;-1:-1:-1::0;;;;;60251:19:0;;;::::1;::::0;;;::::1;::::0;;60167:111::o;27992:946::-;-1:-1:-1;;;;;28180:16:0;;28172:66;;;;-1:-1:-1;;;28172:66:0;;;;;;;:::i;:::-;28251:16;28270:12;:10;:12::i;:::-;28251:31;;28295:185;28330:8;28353:4;28372:2;28389:21;28407:2;28389:17;:21::i;28295:185::-;28493:19;28515:13;;;;;;;;;;;-1:-1:-1;;;;;28515:19:0;;;;;;;;;;28567:21;;;;28545:113;;;;-1:-1:-1;;;28545:113:0;;;;;;;:::i;:::-;28694:9;:13;;;;;;;;;;;-1:-1:-1;;;;;28694:19:0;;;;;;;;;;28716:20;;;28694:42;;28758:17;;;;;;;:27;;28716:20;;28694:9;28758:27;;28716:20;;28758:27;:::i;:::-;;;;-1:-1:-1;;28803:46:0;;;25471:25:1;;;25527:2;25512:18;;25505:34;;;-1:-1:-1;;;;;28803:46:0;;;;;;;;;;;;;;25444:18:1;28803:46:0;;;;;;;28862:68;28893:8;28903:4;28909:2;28913;28917:6;28925:4;28862:30;:68::i;:::-;28161:777;;27992:946;;;;;:::o;51477:410::-;51587:7;49642:108;;;;;;;;;;;;;;;;;49618:143;;;;;;;51741:12;;51776:11;;;;51820:24;;;;;51810:35;;;;;;51660:204;;;;;25781:25:1;;;25837:2;25822:18;;25815:34;;;;-1:-1:-1;;;;;25885:32:1;25880:2;25865:18;;25858:60;25949:2;25934:18;;25927:34;25768:3;25753:19;;25550:417;51660:204:0;;;;;;;;;;;;;51632:247;;;;;;51612:267;;51477:410;;;:::o;49206:258::-;49305:7;49407:20;48645:15;;;48567:101;49407:20;49378:63;;-1:-1:-1;;;49378:63:0;;;26230:27:1;26273:11;;;26266:27;;;;26309:12;;;26302:28;;;26346:12;;49378:63:0;25972:392:1;38230:975:0;-1:-1:-1;;;;;38470:13:0;;6251:20;6299:8;38466:732;;38523:203;;-1:-1:-1;;;38523:203:0;;-1:-1:-1;;;;;38523:43:0;;;;;:203;;38589:8;;38620:4;;38647:3;;38673:7;;38703:4;;38523:203;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38523:203:0;;;;;;;;-1:-1:-1;;38523:203:0;;;;;;;;;;;;:::i;:::-;;;38502:685;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;39060:6;39053:14;;-1:-1:-1;;;39053:14:0;;;;;;;;:::i;38502:685::-;;;39109:62;;-1:-1:-1;;;39109:62:0;;28517:2:1;39109:62:0;;;28499:21:1;28556:2;28536:18;;;28529:30;28595:34;28575:18;;;28568:62;-1:-1:-1;;;28646:18:1;;;28639:50;28706:19;;39109:62:0;28315:416:1;38502:685:0;-1:-1:-1;;;;;;38811:60:0;;-1:-1:-1;;;38811:60:0;38785:199;;38914:50;;-1:-1:-1;;;38914:50:0;;;;;;;:::i;39213:230::-;39365:16;;;39379:1;39365:16;;;;;;;;;39306;;39340:22;;39365:16;;;;;;;;;;;;-1:-1:-1;39365:16:0;39340:41;;39403:7;39392:5;39398:1;39392:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;39430:5;39213:230;-1:-1:-1;;39213:230:0:o;37324:898::-;-1:-1:-1;;;;;37539:13:0;;6251:20;6299:8;37535:680;;37592:196;;-1:-1:-1;;;37592:196:0;;-1:-1:-1;;;;;37592:38:0;;;;;:196;;37653:8;;37684:4;;37711:2;;37736:6;;37765:4;;37592:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37592:196:0;;;;;;;;-1:-1:-1;;37592:196:0;;;;;;;;;;;;:::i;:::-;;;37571:633;;;;:::i;:::-;-1:-1:-1;;;;;;37851:55:0;;-1:-1:-1;;;37851:55:0;37847:154;;37931:50;;-1:-1:-1;;;37931:50:0;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;89:31:1;;79:42;;69:70;;135:1;132;125:12;150:315;218:6;226;279:2;267:9;258:7;254:23;250:32;247:52;;;295:1;292;285:12;247:52;334:9;321:23;353:31;378:5;353:31;:::i;:::-;403:5;455:2;440:18;;;;427:32;;-1:-1:-1;;;150:315:1:o;652:131::-;-1:-1:-1;;;;;;726:32:1;;716:43;;706:71;;773:1;770;763:12;788:245;846:6;899:2;887:9;878:7;874:23;870:32;867:52;;;915:1;912;905:12;867:52;954:9;941:23;973:30;997:5;973:30;:::i;1230:127::-;1291:10;1286:3;1282:20;1279:1;1272:31;1322:4;1319:1;1312:15;1346:4;1343:1;1336:15;1362:249;1472:2;1453:13;;-1:-1:-1;;1449:27:1;1437:40;;-1:-1:-1;;;;;1492:34:1;;1528:22;;;1489:62;1486:88;;;1554:18;;:::i;:::-;1590:2;1583:22;-1:-1:-1;;1362:249:1:o;1616:556::-;1659:5;1712:3;1705:4;1697:6;1693:17;1689:27;1679:55;;1730:1;1727;1720:12;1679:55;1766:6;1753:20;-1:-1:-1;;;;;1788:2:1;1785:26;1782:52;;;1814:18;;:::i;:::-;1863:2;1857:9;1875:67;1930:2;1911:13;;-1:-1:-1;;1907:27:1;1936:4;1903:38;1857:9;1875:67;:::i;:::-;1966:2;1958:6;1951:18;2012:3;2005:4;2000:2;1992:6;1988:15;1984:26;1981:35;1978:55;;;2029:1;2026;2019:12;1978:55;2093:2;2086:4;2078:6;2074:17;2067:4;2059:6;2055:17;2042:54;2140:1;2116:15;;;2133:4;2112:26;2105:37;;;;2120:6;1616:556;-1:-1:-1;;;1616:556:1:o;2177:322::-;2246:6;2299:2;2287:9;2278:7;2274:23;2270:32;2267:52;;;2315:1;2312;2305:12;2267:52;2355:9;2342:23;-1:-1:-1;;;;;2380:6:1;2377:30;2374:50;;;2420:1;2417;2410:12;2374:50;2443;2485:7;2476:6;2465:9;2461:22;2443:50;:::i;2504:258::-;2576:1;2586:113;2600:6;2597:1;2594:13;2586:113;;;2676:11;;;2670:18;2657:11;;;2650:39;2622:2;2615:10;2586:113;;;2717:6;2714:1;2711:13;2708:48;;;-1:-1:-1;;2752:1:1;2734:16;;2727:27;2504:258::o;2767:::-;2809:3;2847:5;2841:12;2874:6;2869:3;2862:19;2890:63;2946:6;2939:4;2934:3;2930:14;2923:4;2916:5;2912:16;2890:63;:::i;:::-;3007:2;2986:15;-1:-1:-1;;2982:29:1;2973:39;;;;3014:4;2969:50;;2767:258;-1:-1:-1;;2767:258:1:o;3030:220::-;3179:2;3168:9;3161:21;3142:4;3199:45;3240:2;3229:9;3225:18;3217:6;3199:45;:::i;3255:759::-;3357:6;3365;3373;3381;3389;3442:3;3430:9;3421:7;3417:23;3413:33;3410:53;;;3459:1;3456;3449:12;3410:53;3498:9;3485:23;3517:31;3542:5;3517:31;:::i;:::-;3567:5;-1:-1:-1;3623:2:1;3608:18;;3595:32;-1:-1:-1;;;;;3639:30:1;;3636:50;;;3682:1;3679;3672:12;3636:50;3705;3747:7;3738:6;3727:9;3723:22;3705:50;:::i;:::-;3695:60;;;3802:2;3791:9;3787:18;3774:32;3764:42;;3853:2;3842:9;3838:18;3825:32;3815:42;;3909:3;3898:9;3894:19;3881:33;3958:4;3949:7;3945:18;3936:7;3933:31;3923:59;;3978:1;3975;3968:12;3923:59;4001:7;3991:17;;;3255:759;;;;;;;;:::o;4242:180::-;4301:6;4354:2;4342:9;4333:7;4329:23;4325:32;4322:52;;;4370:1;4367;4360:12;4322:52;-1:-1:-1;4393:23:1;;4242:180;-1:-1:-1;4242:180:1:o;4609:247::-;4668:6;4721:2;4709:9;4700:7;4696:23;4692:32;4689:52;;;4737:1;4734;4727:12;4689:52;4776:9;4763:23;4795:31;4820:5;4795:31;:::i;4861:183::-;4921:4;-1:-1:-1;;;;;4946:6:1;4943:30;4940:56;;;4976:18;;:::i;:::-;-1:-1:-1;5021:1:1;5017:14;5033:4;5013:25;;4861:183::o;5049:724::-;5103:5;5156:3;5149:4;5141:6;5137:17;5133:27;5123:55;;5174:1;5171;5164:12;5123:55;5210:6;5197:20;5236:4;5259:43;5299:2;5259:43;:::i;:::-;5331:2;5325:9;5343:31;5371:2;5363:6;5343:31;:::i;:::-;5409:18;;;5501:1;5497:10;;;;5485:23;;5481:32;;;5443:15;;;;-1:-1:-1;5525:15:1;;;5522:35;;;5553:1;5550;5543:12;5522:35;5589:2;5581:6;5577:15;5601:142;5617:6;5612:3;5609:15;5601:142;;;5683:17;;5671:30;;5721:12;;;;5634;;5601:142;;;-1:-1:-1;5761:6:1;5049:724;-1:-1:-1;;;;;;5049:724:1:o;5778:1072::-;5932:6;5940;5948;5956;5964;6017:3;6005:9;5996:7;5992:23;5988:33;5985:53;;;6034:1;6031;6024:12;5985:53;6073:9;6060:23;6092:31;6117:5;6092:31;:::i;:::-;6142:5;-1:-1:-1;6199:2:1;6184:18;;6171:32;6212:33;6171:32;6212:33;:::i;:::-;6264:7;-1:-1:-1;6322:2:1;6307:18;;6294:32;-1:-1:-1;;;;;6375:14:1;;;6372:34;;;6402:1;6399;6392:12;6372:34;6425:61;6478:7;6469:6;6458:9;6454:22;6425:61;:::i;:::-;6415:71;;6539:2;6528:9;6524:18;6511:32;6495:48;;6568:2;6558:8;6555:16;6552:36;;;6584:1;6581;6574:12;6552:36;6607:63;6662:7;6651:8;6640:9;6636:24;6607:63;:::i;:::-;6597:73;;6723:3;6712:9;6708:19;6695:33;6679:49;;6753:2;6743:8;6740:16;6737:36;;;6769:1;6766;6759:12;6737:36;;6792:52;6836:7;6825:8;6814:9;6810:24;6792:52;:::i;:::-;6782:62;;;5778:1072;;;;;;;;:::o;6855:815::-;6969:6;6977;6985;6993;7001;7054:3;7042:9;7033:7;7029:23;7025:33;7022:53;;;7071:1;7068;7061:12;7022:53;7110:9;7097:23;7129:31;7154:5;7129:31;:::i;:::-;7179:5;-1:-1:-1;7231:2:1;7216:18;;7203:32;;-1:-1:-1;7282:2:1;7267:18;;7254:32;;-1:-1:-1;7337:2:1;7322:18;;7309:32;-1:-1:-1;;;;;7390:14:1;;;7387:34;;;7417:1;7414;7407:12;7387:34;7440:50;7482:7;7473:6;7462:9;7458:22;7440:50;:::i;7675:390::-;7753:6;7761;7814:2;7802:9;7793:7;7789:23;7785:32;7782:52;;;7830:1;7827;7820:12;7782:52;7866:9;7853:23;7843:33;;7927:2;7916:9;7912:18;7899:32;-1:-1:-1;;;;;7946:6:1;7943:30;7940:50;;;7986:1;7983;7976:12;7940:50;8009;8051:7;8042:6;8031:9;8027:22;8009:50;:::i;:::-;7999:60;;;7675:390;;;;;:::o;8070:799::-;8124:5;8177:3;8170:4;8162:6;8158:17;8154:27;8144:55;;8195:1;8192;8185:12;8144:55;8231:6;8218:20;8257:4;8280:43;8320:2;8280:43;:::i;:::-;8352:2;8346:9;8364:31;8392:2;8384:6;8364:31;:::i;:::-;8430:18;;;8522:1;8518:10;;;;8506:23;;8502:32;;;8464:15;;;;-1:-1:-1;8546:15:1;;;8543:35;;;8574:1;8571;8564:12;8543:35;8610:2;8602:6;8598:15;8622:217;8638:6;8633:3;8630:15;8622:217;;;8718:3;8705:17;8735:31;8760:5;8735:31;:::i;:::-;8779:18;;8817:12;;;;8655;;8622:217;;8874:595;8992:6;9000;9053:2;9041:9;9032:7;9028:23;9024:32;9021:52;;;9069:1;9066;9059:12;9021:52;9109:9;9096:23;-1:-1:-1;;;;;9179:2:1;9171:6;9168:14;9165:34;;;9195:1;9192;9185:12;9165:34;9218:61;9271:7;9262:6;9251:9;9247:22;9218:61;:::i;:::-;9208:71;;9332:2;9321:9;9317:18;9304:32;9288:48;;9361:2;9351:8;9348:16;9345:36;;;9377:1;9374;9367:12;9345:36;;9400:63;9455:7;9444:8;9433:9;9429:24;9400:63;:::i;9474:435::-;9527:3;9565:5;9559:12;9592:6;9587:3;9580:19;9618:4;9647:2;9642:3;9638:12;9631:19;;9684:2;9677:5;9673:14;9705:1;9715:169;9729:6;9726:1;9723:13;9715:169;;;9790:13;;9778:26;;9824:12;;;;9859:15;;;;9751:1;9744:9;9715:169;;;-1:-1:-1;9900:3:1;;9474:435;-1:-1:-1;;;;;9474:435:1:o;9914:261::-;10093:2;10082:9;10075:21;10056:4;10113:56;10165:2;10154:9;10150:18;10142:6;10113:56;:::i;10180:593::-;10275:6;10283;10291;10299;10352:3;10340:9;10331:7;10327:23;10323:33;10320:53;;;10369:1;10366;10359:12;10320:53;10408:9;10395:23;10427:31;10452:5;10427:31;:::i;:::-;10477:5;-1:-1:-1;10529:2:1;10514:18;;10501:32;;-1:-1:-1;10580:2:1;10565:18;;10552:32;;-1:-1:-1;10635:2:1;10620:18;;10607:32;-1:-1:-1;;;;;10651:30:1;;10648:50;;;10694:1;10691;10684:12;10648:50;10717;10759:7;10750:6;10739:9;10735:22;10717:50;:::i;:::-;10707:60;;;10180:593;;;;;;;:::o;10986:416::-;11051:6;11059;11112:2;11100:9;11091:7;11087:23;11083:32;11080:52;;;11128:1;11125;11118:12;11080:52;11167:9;11154:23;11186:31;11211:5;11186:31;:::i;:::-;11236:5;-1:-1:-1;11293:2:1;11278:18;;11265:32;11335:15;;11328:23;11316:36;;11306:64;;11366:1;11363;11356:12;11306:64;11389:7;11379:17;;;10986:416;;;;;:::o;11407:484::-;11509:6;11517;11525;11578:2;11566:9;11557:7;11553:23;11549:32;11546:52;;;11594:1;11591;11584:12;11546:52;11634:9;11621:23;-1:-1:-1;;;;;11659:6:1;11656:30;11653:50;;;11699:1;11696;11689:12;11653:50;11722:61;11775:7;11766:6;11755:9;11751:22;11722:61;:::i;:::-;11712:71;11830:2;11815:18;;11802:32;;-1:-1:-1;11881:2:1;11866:18;;;11853:32;;11407:484;-1:-1:-1;;;;11407:484:1:o;11896:930::-;12041:6;12049;12057;12065;12118:3;12106:9;12097:7;12093:23;12089:33;12086:53;;;12135:1;12132;12125:12;12086:53;12174:9;12161:23;12193:31;12218:5;12193:31;:::i;:::-;12243:5;-1:-1:-1;12299:2:1;12284:18;;12271:32;-1:-1:-1;;;;;12352:14:1;;;12349:34;;;12379:1;12376;12369:12;12349:34;12402:61;12455:7;12446:6;12435:9;12431:22;12402:61;:::i;:::-;12392:71;;12516:2;12505:9;12501:18;12488:32;12472:48;;12545:2;12535:8;12532:16;12529:36;;;12561:1;12558;12551:12;12529:36;12584:63;12639:7;12628:8;12617:9;12613:24;12584:63;:::i;:::-;12574:73;;12700:2;12689:9;12685:18;12672:32;12656:48;;12729:2;12719:8;12716:16;12713:36;;;12745:1;12742;12735:12;12713:36;;12768:52;12812:7;12801:8;12790:9;12786:24;12768:52;:::i;12831:483::-;12924:6;12932;12985:2;12973:9;12964:7;12960:23;12956:32;12953:52;;;13001:1;12998;12991:12;12953:52;13040:9;13027:23;13059:31;13084:5;13059:31;:::i;:::-;13109:5;-1:-1:-1;13165:2:1;13150:18;;13137:32;-1:-1:-1;;;;;13181:30:1;;13178:50;;;13224:1;13221;13214:12;13178:50;13247:61;13300:7;13291:6;13280:9;13276:22;13247:61;:::i;13319:388::-;13387:6;13395;13448:2;13436:9;13427:7;13423:23;13419:32;13416:52;;;13464:1;13461;13454:12;13416:52;13503:9;13490:23;13522:31;13547:5;13522:31;:::i;:::-;13572:5;-1:-1:-1;13629:2:1;13614:18;;13601:32;13642:33;13601:32;13642:33;:::i;13712:735::-;13816:6;13824;13832;13840;13848;13901:3;13889:9;13880:7;13876:23;13872:33;13869:53;;;13918:1;13915;13908:12;13869:53;13957:9;13944:23;13976:31;14001:5;13976:31;:::i;:::-;14026:5;-1:-1:-1;14083:2:1;14068:18;;14055:32;14096:33;14055:32;14096:33;:::i;:::-;14148:7;-1:-1:-1;14202:2:1;14187:18;;14174:32;;-1:-1:-1;14253:2:1;14238:18;;14225:32;;-1:-1:-1;14308:3:1;14293:19;;14280:33;-1:-1:-1;;;;;14325:30:1;;14322:50;;;14368:1;14365;14358:12;14322:50;14391;14433:7;14424:6;14413:9;14409:22;14391:50;:::i;14864:356::-;15066:2;15048:21;;;15085:18;;;15078:30;15144:34;15139:2;15124:18;;15117:62;15211:2;15196:18;;14864:356::o;15225:380::-;15304:1;15300:12;;;;15347;;;15368:61;;15422:4;15414:6;15410:17;15400:27;;15368:61;15475:2;15467:6;15464:14;15444:18;15441:38;15438:161;;15521:10;15516:3;15512:20;15509:1;15502:31;15556:4;15553:1;15546:15;15584:4;15581:1;15574:15;16012:432;-1:-1:-1;;;;;16269:15:1;;;16251:34;;16321:15;;16316:2;16301:18;;16294:43;16373:2;16368;16353:18;;16346:30;;;16194:4;;16393:45;;16419:18;;16411:6;16393:45;:::i;:::-;16385:53;16012:432;-1:-1:-1;;;;;16012:432:1:o;16449:415::-;16606:3;16644:6;16638:13;16660:53;16706:6;16701:3;16694:4;16686:6;16682:17;16660:53;:::i;:::-;16782:2;16778:15;;;;-1:-1:-1;;16774:53:1;16735:16;;;;16760:68;;;16855:2;16844:14;;16449:415;-1:-1:-1;;16449:415:1:o;16869:274::-;16998:3;17036:6;17030:13;17052:53;17098:6;17093:3;17086:4;17078:6;17074:17;17052:53;:::i;:::-;17121:16;;;;;16869:274;-1:-1:-1;;16869:274:1:o;18684:413::-;18886:2;18868:21;;;18925:2;18905:18;;;18898:30;18964:34;18959:2;18944:18;;18937:62;-1:-1:-1;;;19030:2:1;19015:18;;19008:47;19087:3;19072:19;;18684:413::o;19512:127::-;19573:10;19568:3;19564:20;19561:1;19554:31;19604:4;19601:1;19594:15;19628:4;19625:1;19618:15;19644:127;19705:10;19700:3;19696:20;19693:1;19686:31;19736:4;19733:1;19726:15;19760:4;19757:1;19750:15;19776:135;19815:3;19836:17;;;19833:43;;19856:18;;:::i;:::-;-1:-1:-1;19903:1:1;19892:13;;19776:135::o;21155:280::-;21254:6;21307:2;21295:9;21286:7;21282:23;21278:32;21275:52;;;21323:1;21320;21313:12;21275:52;21355:9;21349:16;21374:31;21399:5;21374:31;:::i;23066:128::-;23106:3;23137:1;23133:6;23130:1;23127:13;23124:39;;;23143:18;;:::i;:::-;-1:-1:-1;23179:9:1;;23066:128::o;23199:404::-;23401:2;23383:21;;;23440:2;23420:18;;;23413:30;23479:34;23474:2;23459:18;;23452:62;-1:-1:-1;;;23545:2:1;23530:18;;23523:38;23593:3;23578:19;;23199:404::o;23608:401::-;23810:2;23792:21;;;23849:2;23829:18;;;23822:30;23888:34;23883:2;23868:18;;23861:62;-1:-1:-1;;;23954:2:1;23939:18;;23932:35;23999:3;23984:19;;23608:401::o;24014:406::-;24216:2;24198:21;;;24255:2;24235:18;;;24228:30;24294:34;24289:2;24274:18;;24267:62;-1:-1:-1;;;24360:2:1;24345:18;;24338:40;24410:3;24395:19;;24014:406::o;24425:465::-;24682:2;24671:9;24664:21;24645:4;24708:56;24760:2;24749:9;24745:18;24737:6;24708:56;:::i;:::-;24812:9;24804:6;24800:22;24795:2;24784:9;24780:18;24773:50;24840:44;24877:6;24869;24840:44;:::i;24895:397::-;25097:2;25079:21;;;25136:2;25116:18;;;25109:30;25175:34;25170:2;25155:18;;25148:62;-1:-1:-1;;;25241:2:1;25226:18;;25219:31;25282:3;25267:19;;24895:397::o;26369:827::-;-1:-1:-1;;;;;26766:15:1;;;26748:34;;26818:15;;26813:2;26798:18;;26791:43;26728:3;26865:2;26850:18;;26843:31;;;26691:4;;26897:57;;26934:19;;26926:6;26897:57;:::i;:::-;27002:9;26994:6;26990:22;26985:2;26974:9;26970:18;26963:50;27036:44;27073:6;27065;27036:44;:::i;:::-;27022:58;;27129:9;27121:6;27117:22;27111:3;27100:9;27096:19;27089:51;27157:33;27183:6;27175;27157:33;:::i;27201:249::-;27270:6;27323:2;27311:9;27302:7;27298:23;27294:32;27291:52;;;27339:1;27336;27329:12;27291:52;27371:9;27365:16;27390:30;27414:5;27390:30;:::i;27455:179::-;27490:3;27532:1;27514:16;27511:23;27508:120;;;27578:1;27575;27572;27557:23;-1:-1:-1;27615:1:1;27609:8;27604:3;27600:18;27455:179;:::o;27639:671::-;27678:3;27720:4;27702:16;27699:26;27696:39;;;27639:671;:::o;27696:39::-;27762:2;27756:9;-1:-1:-1;;27827:16:1;27823:25;;27820:1;27756:9;27799:50;27878:4;27872:11;27902:16;-1:-1:-1;;;;;28008:2:1;28001:4;27993:6;27989:17;27986:25;27981:2;27973:6;27970:14;27967:45;27964:58;;;28015:5;;;;;27639:671;:::o;27964:58::-;28052:6;28046:4;28042:17;28031:28;;28088:3;28082:10;28115:2;28107:6;28104:14;28101:27;;;28121:5;;;;;;27639:671;:::o;28101:27::-;28205:2;28186:16;28180:4;28176:27;28172:36;28165:4;28156:6;28151:3;28147:16;28143:27;28140:69;28137:82;;;28212:5;;;;;;27639:671;:::o;28137:82::-;28228:57;28279:4;28270:6;28262;28258:19;28254:30;28248:4;28228:57;:::i;:::-;-1:-1:-1;28301:3:1;;27639:671;-1:-1:-1;;;;;27639:671:1:o;28736:404::-;28938:2;28920:21;;;28977:2;28957:18;;;28950:30;29016:34;29011:2;28996:18;;28989:62;-1:-1:-1;;;29082:2:1;29067:18;;29060:38;29130:3;29115:19;;28736:404::o;29145:561::-;-1:-1:-1;;;;;29442:15:1;;;29424:34;;29494:15;;29489:2;29474:18;;29467:43;29541:2;29526:18;;29519:34;;;29584:2;29569:18;;29562:34;;;29404:3;29627;29612:19;;29605:32;;;29367:4;;29654:46;;29680:19;;29672:6;29654:46;:::i;:::-;29646:54;29145:561;-1:-1:-1;;;;;;;29145:561:1:o

Swarm Source

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