ETH Price: $3,470.14 (+1.82%)
Gas: 9 Gwei

Token

 

Overview

Max Total Supply

2,486

Holders

2,071

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
0xchm.eth
0x01f3c2bcf2ab910dcf2d3daa0c5c3591dfe08579
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:
Dynamic1155

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-13
*/

// File: @openzeppelin/[email protected]/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/[email protected]/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/utils/Address.sol


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/[email protected]/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/[email protected]/token/ERC1155/IERC1155Receiver.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;


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

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

// File: @openzeppelin/[email protected]/token/ERC1155/IERC1155.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/token/ERC1155/extensions/IERC1155MetadataURI.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/[email protected]/token/ERC1155/ERC1155.sol


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

pragma solidity ^0.8.0;







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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

        return array;
    }
}

// File: @openzeppelin/[email protected]/token/ERC1155/extensions/ERC1155Burnable.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Extension of {ERC1155} that allows token holders to destroy both their
 * own tokens and those that they have been approved to use.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Burnable is ERC1155 {
    function burn(
        address account,
        uint256 id,
        uint256 value
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burn(account, id, value);
    }

    function burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory values
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burnBatch(account, ids, values);
    }
}

// File: Dynamic1155__autoapprove_buyable.sol



pragma solidity ^0.8.0;



contract Dynamic1155 is ERC1155Burnable, Ownable {
    // whether minting by owner is allowed
    bool public manualMintAllowed = true;
    // individual uri per type
    mapping (uint256 => string) public typeToUri;
    // whether main uri is freezed
    bool public isUriFreezed;
    // whether each individual uri is freezed
    mapping (uint256 => bool) public typeIsUriFreezed;
    // total supply tracker per type
    mapping (uint256 => uint256) public totalSupply;
    // supply limit per type Id
    mapping(uint256 => uint256) public typeSupplyLimit;
    // price per type Id
    mapping(uint256 => uint256) public typePrice;
    // limit per tx per type Id
    mapping(uint256 => uint256) public typeLimitPerTx;
    // addresses auto-approved by owner
    mapping (address => bool) public isAutoApproved;

    // triggered when mint settings are set for a specific type
    event SetMintSettings(uint256 indexed typeId);
    // triggered when an address is set for auto-approve
    event SetAutoApproved(address indexed addr);

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory _uri)
        ERC1155(_uri)
    {}
    
    /**
     * @dev Lock further manual minting by owner
     */
    function disableManualMint() public onlyOwner {
        manualMintAllowed = false;
    }

    /**
     * @dev Set auto-approved address
     */
    function setAutoApproved(address addr, bool value) public onlyOwner {
        isAutoApproved[addr] = value;
        emit SetAutoApproved(addr);
    }
            
    /**
     * @dev Airdrop tokens to owners
     */
    function mintOwner(address[] calldata owners, uint256[] calldata types, uint256[] calldata counts) public onlyOwner {
      require(manualMintAllowed, "Not allowed");
      require(owners.length == types.length && types.length == counts.length, "Bad array lengths");
         
      for (uint256 i = 0; i < owners.length; i++) {
        _mint(owners[i], types[i], counts[i], "");
      }
    }

    /**
     * @dev Airdrop single tokens to owners
     */
    function mintOwnerOneToken(address[] calldata owners, uint256 typeId) public onlyOwner {
      require(manualMintAllowed, "Not allowed");
         
      for (uint256 i = 0; i < owners.length; i++) {
        _mint(owners[i], typeId, 1, "");
      }
    }

    /**
     * @dev Set mint settings for type
     */
    function setMintSettings(uint256 typeId, uint256 supplyLimit, uint256 price, uint256 limitPerTx) public onlyOwner {
        typeSupplyLimit[typeId] = supplyLimit;
        typePrice[typeId] = price;
        typeLimitPerTx[typeId] = limitPerTx;

        emit SetMintSettings(typeId);
    }

    /**
     * @dev Set mint settings for multiple types
     */
    function setMintSettingsArray(uint256[] calldata typeIds, uint256[] calldata supplyLimits, uint256[] calldata prices, uint256[] calldata limitsPerTx) public onlyOwner {
        for (uint256 i=0; i<typeIds.length; i++) {
            typeSupplyLimit[typeIds[i]] = supplyLimits[i];
            typePrice[typeIds[i]] = prices[i];
            typeLimitPerTx[typeIds[i]] = limitsPerTx[i];

            emit SetMintSettings(typeIds[i]);
        }
    }

    /**
     * @dev Public mint
     */
    function mintPublic(uint256 typeId, uint256 amount) public payable {
        require(msg.value == amount*typePrice[typeId], "Wrong ETH value");
        require(amount <= typeLimitPerTx[typeId], "Per tx limit exceeded");
        require(amount > 0, "Can't mint 0");
        require(totalSupply[typeId] + amount <= typeSupplyLimit[typeId], "Supply exceeded");

        totalSupply[typeId] += amount;
        _mint(msg.sender, typeId, amount, "");
    }

    /**
     * @dev Type uri
     */
    function uri(uint256 typeId) public view override returns (string memory) {
        string memory typeUri = typeToUri[typeId];
        if (bytes(typeUri).length == 0) {
            return super.uri(typeId);
        } else {
            return typeUri;
        }
    }
   
    /**
     * @dev Updates the metadata URI
     */
    function updateUri(string calldata newUri) public onlyOwner {
        require(!isUriFreezed, "Freezed");
        _setURI(newUri);
    }

    /**
     * @dev Freezes the metadata URI
     */
    function freezeUri() public onlyOwner {
        isUriFreezed = true;
    }

    /**
     * @dev Updates and freezes the metadata URI
     */
    function permanentSetUri(string calldata newUri) public onlyOwner {
        updateUri(newUri);
        freezeUri();
    }

    /**
     * @dev Updates the metadata URI for a specific type
     */
    function updateUriForType(string calldata newUri, uint256 typeId) public onlyOwner {
        require(!typeIsUriFreezed[typeId], "Freezed");
        typeToUri[typeId] = newUri;
    }

    /**
     * @dev Freezes the metadata URI
     */
    function freezeUriForType(uint256 typeId) public onlyOwner {
        typeIsUriFreezed[typeId] = true;
    }

    /**
     * @dev Updates and freezes the metadata URI
     */
    function permanentSetUriForType(string calldata newUri, uint256 typeId) public onlyOwner {
        updateUriForType(newUri, typeId);
        freezeUriForType(typeId);
    }

    /**
     * @dev isApprovedForAll override
     */
    function isApprovedForAll(address account, address operator) public view virtual override returns (bool) {
        return isAutoApproved[operator] || super.isApprovedForAll(account, operator);
    }

    /**
     * @dev Withdraw ether from this contract (Callable by owner)
     */
    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addr","type":"address"}],"name":"SetAutoApproved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"typeId","type":"uint256"}],"name":"SetMintSettings","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableManualMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freezeUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"typeId","type":"uint256"}],"name":"freezeUriForType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isAutoApproved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isUriFreezed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualMintAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"owners","type":"address[]"},{"internalType":"uint256[]","name":"types","type":"uint256[]"},{"internalType":"uint256[]","name":"counts","type":"uint256[]"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"owners","type":"address[]"},{"internalType":"uint256","name":"typeId","type":"uint256"}],"name":"mintOwnerOneToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"typeId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"newUri","type":"string"}],"name":"permanentSetUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newUri","type":"string"},{"internalType":"uint256","name":"typeId","type":"uint256"}],"name":"permanentSetUriForType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutoApproved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"typeId","type":"uint256"},{"internalType":"uint256","name":"supplyLimit","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"limitPerTx","type":"uint256"}],"name":"setMintSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"typeIds","type":"uint256[]"},{"internalType":"uint256[]","name":"supplyLimits","type":"uint256[]"},{"internalType":"uint256[]","name":"prices","type":"uint256[]"},{"internalType":"uint256[]","name":"limitsPerTx","type":"uint256[]"}],"name":"setMintSettingsArray","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"typeIsUriFreezed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"typeLimitPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"typePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"typeSupplyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"typeToUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"newUri","type":"string"}],"name":"updateUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newUri","type":"string"},{"internalType":"uint256","name":"typeId","type":"uint256"}],"name":"updateUriForType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"typeId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600360146101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50604051620058a4380380620058a48339818101604052810190620000529190620003c3565b8062000064816200008c60201b60201c565b506200008562000079620000a860201b60201c565b620000b060201b60201c565b5062000479565b8060029080519060200190620000a492919062000176565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001849062000443565b90600052602060002090601f016020900481019282620001a85760008555620001f4565b82601f10620001c357805160ff1916838001178555620001f4565b82800160010185558215620001f4579182015b82811115620001f3578251825591602001919060010190620001d6565b5b50905062000203919062000207565b5090565b5b808211156200022257600081600090555060010162000208565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200028f8262000244565b810181811067ffffffffffffffff82111715620002b157620002b062000255565b5b80604052505050565b6000620002c662000226565b9050620002d4828262000284565b919050565b600067ffffffffffffffff821115620002f757620002f662000255565b5b620003028262000244565b9050602081019050919050565b60005b838110156200032f57808201518184015260208101905062000312565b838111156200033f576000848401525b50505050565b60006200035c6200035684620002d9565b620002ba565b9050828152602081018484840111156200037b576200037a6200023f565b5b620003888482856200030f565b509392505050565b600082601f830112620003a857620003a76200023a565b5b8151620003ba84826020860162000345565b91505092915050565b600060208284031215620003dc57620003db62000230565b5b600082015167ffffffffffffffff811115620003fd57620003fc62000235565b5b6200040b8482850162000390565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200045c57607f821691505b6020821081141562000473576200047262000414565b5b50919050565b61541b80620004896000396000f3fe60806040526004361061020e5760003560e01c80635fffdfaf11610118578063abff7f6e116100a0578063e985e9c51161006f578063e985e9c5146107a4578063ed5ab3f6146107e1578063f242432a146107fd578063f2fde38b14610826578063f5298aca1461084f5761020e565b8063abff7f6e146106ec578063bd85b03914610715578063c30f3bb114610752578063c75e25e11461077b5761020e565b80638da5cb5b116100e75780638da5cb5b1461061b578063943c19aa1461064657806395d34d9e1461066f578063a22cb46514610698578063ab05ff41146106c15761020e565b80635fffdfaf146105615780636b20c4541461059e5780636c3839e9146105c7578063715018a6146106045761020e565b806326bb1cf71161019b5780633199da021161016a5780633199da021461046a5780633ccfd60b146104a75780634e1273f4146104be5780634e5bcfab146104fb578063570b3c6a146105385761020e565b806326bb1cf7146103c45780632768d709146103ed5780632be9279d146104165780632eb2c2d6146104415761020e565b80630e89341c116101e25780630e89341c146102cd5780630f52b76e1461030a57806314106f86146103215780632094aacc1461034a578063267f8640146103875761020e565b8062fdd58e1461021357806301ffc9a714610250578063086cb7851461028d57806308b58c1d146102a4575b600080fd5b34801561021f57600080fd5b5061023a6004803603810190610235919061368f565b610878565b60405161024791906136de565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190613751565b610941565b6040516102849190613799565b60405180910390f35b34801561029957600080fd5b506102a2610a23565b005b3480156102b057600080fd5b506102cb60048036038101906102c69190613819565b610abc565b005b3480156102d957600080fd5b506102f460048036038101906102ef9190613879565b610b51565b604051610301919061393f565b60405180910390f35b34801561031657600080fd5b5061031f610c18565b005b34801561032d57600080fd5b5061034860048036038101906103439190613961565b610cb1565b005b34801561035657600080fd5b50610371600480360381019061036c9190613879565b610da8565b60405161037e919061393f565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a99190613879565b610e48565b6040516103bb9190613799565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e691906139f4565b610e68565b005b3480156103f957600080fd5b50610414600480360381019061040f9190613ae0565b610f82565b005b34801561042257600080fd5b5061042b611144565b6040516104389190613799565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190613d87565b611157565b005b34801561047657600080fd5b50610491600480360381019061048c9190613e56565b6111f8565b60405161049e9190613799565b60405180910390f35b3480156104b357600080fd5b506104bc611218565b005b3480156104ca57600080fd5b506104e560048036038101906104e09190613f46565b6112e3565b6040516104f2919061407c565b60405180910390f35b34801561050757600080fd5b50610522600480360381019061051d9190613879565b6113fc565b60405161052f91906136de565b60405180910390f35b34801561054457600080fd5b5061055f600480360381019061055a919061409e565b611414565b005b34801561056d57600080fd5b5061058860048036038101906105839190613879565b611531565b60405161059591906136de565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c091906140eb565b611549565b005b3480156105d357600080fd5b506105ee60048036038101906105e99190613879565b6115e6565b6040516105fb91906136de565b60405180910390f35b34801561061057600080fd5b506106196115fe565b005b34801561062757600080fd5b50610630611686565b60405161063d9190614185565b60405180910390f35b34801561065257600080fd5b5061066d600480360381019061066891906141a0565b6116b0565b005b34801561067b57600080fd5b5061069660048036038101906106919190613819565b61187c565b005b3480156106a457600080fd5b506106bf60048036038101906106ba91906139f4565b611981565b005b3480156106cd57600080fd5b506106d6611997565b6040516106e39190613799565b60405180910390f35b3480156106f857600080fd5b50610713600480360381019061070e919061409e565b6119aa565b005b34801561072157600080fd5b5061073c60048036038101906107379190613879565b611a3c565b60405161074991906136de565b60405180910390f35b34801561075e57600080fd5b5061077960048036038101906107749190613879565b611a54565b005b34801561078757600080fd5b506107a2600480360381019061079d9190614289565b611aff565b005b3480156107b057600080fd5b506107cb60048036038101906107c691906142e9565b611c34565b6040516107d89190613799565b60405180910390f35b6107fb60048036038101906107f69190614329565b611c9c565b005b34801561080957600080fd5b50610824600480360381019061081f9190614369565b611e52565b005b34801561083257600080fd5b5061084d60048036038101906108489190613e56565b611ef3565b005b34801561085b57600080fd5b5061087660048036038101906108719190614400565b611feb565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e0906144c5565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a0c57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a1c5750610a1b82612088565b5b9050919050565b610a2b6120f2565b73ffffffffffffffffffffffffffffffffffffffff16610a49611686565b73ffffffffffffffffffffffffffffffffffffffff1614610a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9690614531565b60405180910390fd5b6001600560006101000a81548160ff021916908315150217905550565b610ac46120f2565b73ffffffffffffffffffffffffffffffffffffffff16610ae2611686565b73ffffffffffffffffffffffffffffffffffffffff1614610b38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2f90614531565b60405180910390fd5b610b4383838361187c565b610b4c81611a54565b505050565b60606000600460008481526020019081526020016000208054610b7390614580565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9f90614580565b8015610bec5780601f10610bc157610100808354040283529160200191610bec565b820191906000526020600020905b815481529060010190602001808311610bcf57829003601f168201915b50505050509050600081511415610c0e57610c06836120fa565b915050610c13565b809150505b919050565b610c206120f2565b73ffffffffffffffffffffffffffffffffffffffff16610c3e611686565b73ffffffffffffffffffffffffffffffffffffffff1614610c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8b90614531565b60405180910390fd5b6000600360146101000a81548160ff021916908315150217905550565b610cb96120f2565b73ffffffffffffffffffffffffffffffffffffffff16610cd7611686565b73ffffffffffffffffffffffffffffffffffffffff1614610d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2490614531565b60405180910390fd5b82600860008681526020019081526020016000208190555081600960008681526020019081526020016000208190555080600a600086815260200190815260200160002081905550837f2dac1677998d38e33c4e28b59d542dafacf2c4137a2ff3a8d85b46545c7dd66e60405160405180910390a250505050565b60046020528060005260406000206000915090508054610dc790614580565b80601f0160208091040260200160405190810160405280929190818152602001828054610df390614580565b8015610e405780601f10610e1557610100808354040283529160200191610e40565b820191906000526020600020905b815481529060010190602001808311610e2357829003601f168201915b505050505081565b60066020528060005260406000206000915054906101000a900460ff1681565b610e706120f2565b73ffffffffffffffffffffffffffffffffffffffff16610e8e611686565b73ffffffffffffffffffffffffffffffffffffffff1614610ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edb90614531565b60405180910390fd5b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fe7e87d526025768dfbff568780e9eb516bfc7a7d59de38505d40c54b45a78e1060405160405180910390a25050565b610f8a6120f2565b73ffffffffffffffffffffffffffffffffffffffff16610fa8611686565b73ffffffffffffffffffffffffffffffffffffffff1614610ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff590614531565b60405180910390fd5b600360149054906101000a900460ff1661104d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611044906145fe565b60405180910390fd5b838390508686905014801561106757508181905084849050145b6110a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109d9061466a565b60405180910390fd5b60005b8686905081101561113b576111288787838181106110ca576110c961468a565b5b90506020020160208101906110df9190613e56565b8686848181106110f2576110f161468a565b5b9050602002013585858581811061110c5761110b61468a565b5b905060200201356040518060200160405280600081525061218e565b8080611133906146e8565b9150506110a9565b50505050505050565b600360149054906101000a900460ff1681565b61115f6120f2565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806111a557506111a48561119f6120f2565b611c34565b5b6111e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111db906147a3565b60405180910390fd5b6111f18585858585612324565b5050505050565b600b6020528060005260406000206000915054906101000a900460ff1681565b6112206120f2565b73ffffffffffffffffffffffffffffffffffffffff1661123e611686565b73ffffffffffffffffffffffffffffffffffffffff1614611294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b90614531565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112df573d6000803e3d6000fd5b5050565b60608151835114611329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132090614835565b60405180910390fd5b6000835167ffffffffffffffff81111561134657611345613b94565b5b6040519080825280602002602001820160405280156113745781602001602082028036833780820191505090505b50905060005b84518110156113f1576113c18582815181106113995761139861468a565b5b60200260200101518583815181106113b4576113b361468a565b5b6020026020010151610878565b8282815181106113d4576113d361468a565b5b602002602001018181525050806113ea906146e8565b905061137a565b508091505092915050565b60096020528060005260406000206000915090505481565b61141c6120f2565b73ffffffffffffffffffffffffffffffffffffffff1661143a611686565b73ffffffffffffffffffffffffffffffffffffffff1614611490576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148790614531565b60405180910390fd5b600560009054906101000a900460ff16156114e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d7906148a1565b60405180910390fd5b61152d82828080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612638565b5050565b600a6020528060005260406000206000915090505481565b6115516120f2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806115975750611596836115916120f2565b611c34565b5b6115d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cd90614933565b60405180910390fd5b6115e1838383612652565b505050565b60086020528060005260406000206000915090505481565b6116066120f2565b73ffffffffffffffffffffffffffffffffffffffff16611624611686565b73ffffffffffffffffffffffffffffffffffffffff161461167a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167190614531565b60405180910390fd5b6116846000612903565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116b86120f2565b73ffffffffffffffffffffffffffffffffffffffff166116d6611686565b73ffffffffffffffffffffffffffffffffffffffff161461172c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172390614531565b60405180910390fd5b60005b888890508110156118715786868281811061174d5761174c61468a565b5b90506020020135600860008b8b8581811061176b5761176a61468a565b5b905060200201358152602001908152602001600020819055508484828181106117975761179661468a565b5b90506020020135600960008b8b858181106117b5576117b461468a565b5b905060200201358152602001908152602001600020819055508282828181106117e1576117e061468a565b5b90506020020135600a60008b8b858181106117ff576117fe61468a565b5b9050602002013581526020019081526020016000208190555088888281811061182b5761182a61468a565b5b905060200201357f2dac1677998d38e33c4e28b59d542dafacf2c4137a2ff3a8d85b46545c7dd66e60405160405180910390a28080611869906146e8565b91505061172f565b505050505050505050565b6118846120f2565b73ffffffffffffffffffffffffffffffffffffffff166118a2611686565b73ffffffffffffffffffffffffffffffffffffffff16146118f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ef90614531565b60405180910390fd5b6006600082815260200190815260200160002060009054906101000a900460ff1615611959576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611950906148a1565b60405180910390fd5b828260046000848152602001908152602001600020919061197b9291906134be565b50505050565b61199361198c6120f2565b83836129c9565b5050565b600560009054906101000a900460ff1681565b6119b26120f2565b73ffffffffffffffffffffffffffffffffffffffff166119d0611686565b73ffffffffffffffffffffffffffffffffffffffff1614611a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1d90614531565b60405180910390fd5b611a308282611414565b611a38610a23565b5050565b60076020528060005260406000206000915090505481565b611a5c6120f2565b73ffffffffffffffffffffffffffffffffffffffff16611a7a611686565b73ffffffffffffffffffffffffffffffffffffffff1614611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac790614531565b60405180910390fd5b60016006600083815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611b076120f2565b73ffffffffffffffffffffffffffffffffffffffff16611b25611686565b73ffffffffffffffffffffffffffffffffffffffff1614611b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7290614531565b60405180910390fd5b600360149054906101000a900460ff16611bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc1906145fe565b60405180910390fd5b60005b83839050811015611c2e57611c1b848483818110611bee57611bed61468a565b5b9050602002016020810190611c039190613e56565b8360016040518060200160405280600081525061218e565b8080611c26906146e8565b915050611bcd565b50505050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611c945750611c938383612b36565b5b905092915050565b600960008381526020019081526020016000205481611cbb9190614953565b3414611cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf3906149f9565b60405180910390fd5b600a600083815260200190815260200160002054811115611d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4990614a65565b60405180910390fd5b60008111611d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8c90614ad1565b60405180910390fd5b6008600083815260200190815260200160002054816007600085815260200190815260200160002054611dc89190614af1565b1115611e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0090614b93565b60405180910390fd5b80600760008481526020019081526020016000206000828254611e2c9190614af1565b92505081905550611e4e3383836040518060200160405280600081525061218e565b5050565b611e5a6120f2565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611ea05750611e9f85611e9a6120f2565b611c34565b5b611edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed690614933565b60405180910390fd5b611eec8585858585612bca565b5050505050565b611efb6120f2565b73ffffffffffffffffffffffffffffffffffffffff16611f19611686565b73ffffffffffffffffffffffffffffffffffffffff1614611f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6690614531565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd690614c25565b60405180910390fd5b611fe881612903565b50565b611ff36120f2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806120395750612038836120336120f2565b611c34565b5b612078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206f90614933565b60405180910390fd5b612083838383612e4c565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60606002805461210990614580565b80601f016020809104026020016040519081016040528092919081815260200182805461213590614580565b80156121825780601f1061215757610100808354040283529160200191612182565b820191906000526020600020905b81548152906001019060200180831161216557829003601f168201915b50505050509050919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156121fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f590614cb7565b60405180910390fd5b60006122086120f2565b90506122298160008761221a88613069565b61222388613069565b876130e3565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122889190614af1565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612306929190614cd7565b60405180910390a461231d816000878787876130eb565b5050505050565b8151835114612368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235f90614d72565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cf90614e04565b60405180910390fd5b60006123e26120f2565b90506123f28187878787876130e3565b60005b84518110156125a35760008582815181106124135761241261468a565b5b6020026020010151905060008583815181106124325761243161468a565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156124d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ca90614e96565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125889190614af1565b925050819055505050508061259c906146e8565b90506123f5565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161261a929190614eb6565b60405180910390a46126308187878787876132c3565b505050505050565b806002908051906020019061264e929190613544565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b990614f5f565b60405180910390fd5b8051825114612706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fd90614d72565b60405180910390fd5b60006127106120f2565b9050612730818560008686604051806020016040528060008152506130e3565b60005b835181101561287d5760008482815181106127515761275061468a565b5b6020026020010151905060008483815181106127705761276f61468a565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280890614ff1565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050508080612875906146e8565b915050612733565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516128f5929190614eb6565b60405180910390a450505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2f90615083565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612b299190613799565b60405180910390a3505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3190614e04565b60405180910390fd5b6000612c446120f2565b9050612c64818787612c5588613069565b612c5e88613069565b876130e3565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf290614e96565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612db09190614af1565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612e2d929190614cd7565b60405180910390a4612e438288888888886130eb565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb390614f5f565b60405180910390fd5b6000612ec66120f2565b9050612ef681856000612ed887613069565b612ee187613069565b604051806020016040528060008152506130e3565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8490614ff1565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161305a929190614cd7565b60405180910390a45050505050565b60606000600167ffffffffffffffff81111561308857613087613b94565b5b6040519080825280602002602001820160405280156130b65781602001602082028036833780820191505090505b50905082816000815181106130ce576130cd61468a565b5b60200260200101818152505080915050919050565b505050505050565b61310a8473ffffffffffffffffffffffffffffffffffffffff1661349b565b156132bb578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016131509594939291906150f8565b6020604051808303816000875af192505050801561318c57506040513d601f19601f820116820180604052508101906131899190615167565b60015b613232576131986151a1565b806308c379a014156131f557506131ad6151c3565b806131b857506131f7565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ec919061393f565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613229906152cb565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146132b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b09061535d565b60405180910390fd5b505b505050505050565b6132e28473ffffffffffffffffffffffffffffffffffffffff1661349b565b15613493578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161332895949392919061537d565b6020604051808303816000875af192505050801561336457506040513d601f19601f820116820180604052508101906133619190615167565b60015b61340a576133706151a1565b806308c379a014156133cd57506133856151c3565b8061339057506133cf565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133c4919061393f565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613401906152cb565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613491576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134889061535d565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546134ca90614580565b90600052602060002090601f0160209004810192826134ec5760008555613533565b82601f1061350557803560ff1916838001178555613533565b82800160010185558215613533579182015b82811115613532578235825591602001919060010190613517565b5b50905061354091906135ca565b5090565b82805461355090614580565b90600052602060002090601f01602090048101928261357257600085556135b9565b82601f1061358b57805160ff19168380011785556135b9565b828001600101855582156135b9579182015b828111156135b857825182559160200191906001019061359d565b5b5090506135c691906135ca565b5090565b5b808211156135e35760008160009055506001016135cb565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613626826135fb565b9050919050565b6136368161361b565b811461364157600080fd5b50565b6000813590506136538161362d565b92915050565b6000819050919050565b61366c81613659565b811461367757600080fd5b50565b60008135905061368981613663565b92915050565b600080604083850312156136a6576136a56135f1565b5b60006136b485828601613644565b92505060206136c58582860161367a565b9150509250929050565b6136d881613659565b82525050565b60006020820190506136f360008301846136cf565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61372e816136f9565b811461373957600080fd5b50565b60008135905061374b81613725565b92915050565b600060208284031215613767576137666135f1565b5b60006137758482850161373c565b91505092915050565b60008115159050919050565b6137938161377e565b82525050565b60006020820190506137ae600083018461378a565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126137d9576137d86137b4565b5b8235905067ffffffffffffffff8111156137f6576137f56137b9565b5b602083019150836001820283011115613812576138116137be565b5b9250929050565b600080600060408486031215613832576138316135f1565b5b600084013567ffffffffffffffff8111156138505761384f6135f6565b5b61385c868287016137c3565b9350935050602061386f8682870161367a565b9150509250925092565b60006020828403121561388f5761388e6135f1565b5b600061389d8482850161367a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138e05780820151818401526020810190506138c5565b838111156138ef576000848401525b50505050565b6000601f19601f8301169050919050565b6000613911826138a6565b61391b81856138b1565b935061392b8185602086016138c2565b613934816138f5565b840191505092915050565b600060208201905081810360008301526139598184613906565b905092915050565b6000806000806080858703121561397b5761397a6135f1565b5b60006139898782880161367a565b945050602061399a8782880161367a565b93505060406139ab8782880161367a565b92505060606139bc8782880161367a565b91505092959194509250565b6139d18161377e565b81146139dc57600080fd5b50565b6000813590506139ee816139c8565b92915050565b60008060408385031215613a0b57613a0a6135f1565b5b6000613a1985828601613644565b9250506020613a2a858286016139df565b9150509250929050565b60008083601f840112613a4a57613a496137b4565b5b8235905067ffffffffffffffff811115613a6757613a666137b9565b5b602083019150836020820283011115613a8357613a826137be565b5b9250929050565b60008083601f840112613aa057613a9f6137b4565b5b8235905067ffffffffffffffff811115613abd57613abc6137b9565b5b602083019150836020820283011115613ad957613ad86137be565b5b9250929050565b60008060008060008060608789031215613afd57613afc6135f1565b5b600087013567ffffffffffffffff811115613b1b57613b1a6135f6565b5b613b2789828a01613a34565b9650965050602087013567ffffffffffffffff811115613b4a57613b496135f6565b5b613b5689828a01613a8a565b9450945050604087013567ffffffffffffffff811115613b7957613b786135f6565b5b613b8589828a01613a8a565b92509250509295509295509295565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613bcc826138f5565b810181811067ffffffffffffffff82111715613beb57613bea613b94565b5b80604052505050565b6000613bfe6135e7565b9050613c0a8282613bc3565b919050565b600067ffffffffffffffff821115613c2a57613c29613b94565b5b602082029050602081019050919050565b6000613c4e613c4984613c0f565b613bf4565b90508083825260208201905060208402830185811115613c7157613c706137be565b5b835b81811015613c9a5780613c86888261367a565b845260208401935050602081019050613c73565b5050509392505050565b600082601f830112613cb957613cb86137b4565b5b8135613cc9848260208601613c3b565b91505092915050565b600080fd5b600067ffffffffffffffff821115613cf257613cf1613b94565b5b613cfb826138f5565b9050602081019050919050565b82818337600083830152505050565b6000613d2a613d2584613cd7565b613bf4565b905082815260208101848484011115613d4657613d45613cd2565b5b613d51848285613d08565b509392505050565b600082601f830112613d6e57613d6d6137b4565b5b8135613d7e848260208601613d17565b91505092915050565b600080600080600060a08688031215613da357613da26135f1565b5b6000613db188828901613644565b9550506020613dc288828901613644565b945050604086013567ffffffffffffffff811115613de357613de26135f6565b5b613def88828901613ca4565b935050606086013567ffffffffffffffff811115613e1057613e0f6135f6565b5b613e1c88828901613ca4565b925050608086013567ffffffffffffffff811115613e3d57613e3c6135f6565b5b613e4988828901613d59565b9150509295509295909350565b600060208284031215613e6c57613e6b6135f1565b5b6000613e7a84828501613644565b91505092915050565b600067ffffffffffffffff821115613e9e57613e9d613b94565b5b602082029050602081019050919050565b6000613ec2613ebd84613e83565b613bf4565b90508083825260208201905060208402830185811115613ee557613ee46137be565b5b835b81811015613f0e5780613efa8882613644565b845260208401935050602081019050613ee7565b5050509392505050565b600082601f830112613f2d57613f2c6137b4565b5b8135613f3d848260208601613eaf565b91505092915050565b60008060408385031215613f5d57613f5c6135f1565b5b600083013567ffffffffffffffff811115613f7b57613f7a6135f6565b5b613f8785828601613f18565b925050602083013567ffffffffffffffff811115613fa857613fa76135f6565b5b613fb485828601613ca4565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613ff381613659565b82525050565b60006140058383613fea565b60208301905092915050565b6000602082019050919050565b600061402982613fbe565b6140338185613fc9565b935061403e83613fda565b8060005b8381101561406f5781516140568882613ff9565b975061406183614011565b925050600181019050614042565b5085935050505092915050565b60006020820190508181036000830152614096818461401e565b905092915050565b600080602083850312156140b5576140b46135f1565b5b600083013567ffffffffffffffff8111156140d3576140d26135f6565b5b6140df858286016137c3565b92509250509250929050565b600080600060608486031215614104576141036135f1565b5b600061411286828701613644565b935050602084013567ffffffffffffffff811115614133576141326135f6565b5b61413f86828701613ca4565b925050604084013567ffffffffffffffff8111156141605761415f6135f6565b5b61416c86828701613ca4565b9150509250925092565b61417f8161361b565b82525050565b600060208201905061419a6000830184614176565b92915050565b6000806000806000806000806080898b0312156141c0576141bf6135f1565b5b600089013567ffffffffffffffff8111156141de576141dd6135f6565b5b6141ea8b828c01613a8a565b9850985050602089013567ffffffffffffffff81111561420d5761420c6135f6565b5b6142198b828c01613a8a565b9650965050604089013567ffffffffffffffff81111561423c5761423b6135f6565b5b6142488b828c01613a8a565b9450945050606089013567ffffffffffffffff81111561426b5761426a6135f6565b5b6142778b828c01613a8a565b92509250509295985092959890939650565b6000806000604084860312156142a2576142a16135f1565b5b600084013567ffffffffffffffff8111156142c0576142bf6135f6565b5b6142cc86828701613a34565b935093505060206142df8682870161367a565b9150509250925092565b60008060408385031215614300576142ff6135f1565b5b600061430e85828601613644565b925050602061431f85828601613644565b9150509250929050565b600080604083850312156143405761433f6135f1565b5b600061434e8582860161367a565b925050602061435f8582860161367a565b9150509250929050565b600080600080600060a08688031215614385576143846135f1565b5b600061439388828901613644565b95505060206143a488828901613644565b94505060406143b58882890161367a565b93505060606143c68882890161367a565b925050608086013567ffffffffffffffff8111156143e7576143e66135f6565b5b6143f388828901613d59565b9150509295509295909350565b600080600060608486031215614419576144186135f1565b5b600061442786828701613644565b93505060206144388682870161367a565b92505060406144498682870161367a565b9150509250925092565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006144af602b836138b1565b91506144ba82614453565b604082019050919050565b600060208201905081810360008301526144de816144a2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061451b6020836138b1565b9150614526826144e5565b602082019050919050565b6000602082019050818103600083015261454a8161450e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061459857607f821691505b602082108114156145ac576145ab614551565b5b50919050565b7f4e6f7420616c6c6f776564000000000000000000000000000000000000000000600082015250565b60006145e8600b836138b1565b91506145f3826145b2565b602082019050919050565b60006020820190508181036000830152614617816145db565b9050919050565b7f426164206172726179206c656e67746873000000000000000000000000000000600082015250565b60006146546011836138b1565b915061465f8261461e565b602082019050919050565b6000602082019050818103600083015261468381614647565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006146f382613659565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614726576147256146b9565b5b600182019050919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b600061478d6032836138b1565b915061479882614731565b604082019050919050565b600060208201905081810360008301526147bc81614780565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b600061481f6029836138b1565b915061482a826147c3565b604082019050919050565b6000602082019050818103600083015261484e81614812565b9050919050565b7f467265657a656400000000000000000000000000000000000000000000000000600082015250565b600061488b6007836138b1565b915061489682614855565b602082019050919050565b600060208201905081810360008301526148ba8161487e565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b600061491d6029836138b1565b9150614928826148c1565b604082019050919050565b6000602082019050818103600083015261494c81614910565b9050919050565b600061495e82613659565b915061496983613659565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149a2576149a16146b9565b5b828202905092915050565b7f57726f6e67204554482076616c75650000000000000000000000000000000000600082015250565b60006149e3600f836138b1565b91506149ee826149ad565b602082019050919050565b60006020820190508181036000830152614a12816149d6565b9050919050565b7f506572207478206c696d69742065786365656465640000000000000000000000600082015250565b6000614a4f6015836138b1565b9150614a5a82614a19565b602082019050919050565b60006020820190508181036000830152614a7e81614a42565b9050919050565b7f43616e2774206d696e7420300000000000000000000000000000000000000000600082015250565b6000614abb600c836138b1565b9150614ac682614a85565b602082019050919050565b60006020820190508181036000830152614aea81614aae565b9050919050565b6000614afc82613659565b9150614b0783613659565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b3c57614b3b6146b9565b5b828201905092915050565b7f537570706c792065786365656465640000000000000000000000000000000000600082015250565b6000614b7d600f836138b1565b9150614b8882614b47565b602082019050919050565b60006020820190508181036000830152614bac81614b70565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614c0f6026836138b1565b9150614c1a82614bb3565b604082019050919050565b60006020820190508181036000830152614c3e81614c02565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614ca16021836138b1565b9150614cac82614c45565b604082019050919050565b60006020820190508181036000830152614cd081614c94565b9050919050565b6000604082019050614cec60008301856136cf565b614cf960208301846136cf565b9392505050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000614d5c6028836138b1565b9150614d6782614d00565b604082019050919050565b60006020820190508181036000830152614d8b81614d4f565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614dee6025836138b1565b9150614df982614d92565b604082019050919050565b60006020820190508181036000830152614e1d81614de1565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000614e80602a836138b1565b9150614e8b82614e24565b604082019050919050565b60006020820190508181036000830152614eaf81614e73565b9050919050565b60006040820190508181036000830152614ed0818561401e565b90508181036020830152614ee4818461401e565b90509392505050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614f496023836138b1565b9150614f5482614eed565b604082019050919050565b60006020820190508181036000830152614f7881614f3c565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000614fdb6024836138b1565b9150614fe682614f7f565b604082019050919050565b6000602082019050818103600083015261500a81614fce565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b600061506d6029836138b1565b915061507882615011565b604082019050919050565b6000602082019050818103600083015261509c81615060565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006150ca826150a3565b6150d481856150ae565b93506150e48185602086016138c2565b6150ed816138f5565b840191505092915050565b600060a08201905061510d6000830188614176565b61511a6020830187614176565b61512760408301866136cf565b61513460608301856136cf565b818103608083015261514681846150bf565b90509695505050505050565b60008151905061516181613725565b92915050565b60006020828403121561517d5761517c6135f1565b5b600061518b84828501615152565b91505092915050565b60008160e01c9050919050565b600060033d11156151c05760046000803e6151bd600051615194565b90505b90565b600060443d10156151d357615256565b6151db6135e7565b60043d036004823e80513d602482011167ffffffffffffffff82111715615203575050615256565b808201805167ffffffffffffffff8111156152215750505050615256565b80602083010160043d03850181111561523e575050505050615256565b61524d82602001850186613bc3565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b60006152b56034836138b1565b91506152c082615259565b604082019050919050565b600060208201905081810360008301526152e4816152a8565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006153476028836138b1565b9150615352826152eb565b604082019050919050565b600060208201905081810360008301526153768161533a565b9050919050565b600060a0820190506153926000830188614176565b61539f6020830187614176565b81810360408301526153b1818661401e565b905081810360608301526153c5818561401e565b905081810360808301526153d981846150bf565b9050969550505050505056fea26469706673582212202d16995baf6519f319949324fa46a883b7389b98893c2223cf755dee84f762ec64736f6c634300080c003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061020e5760003560e01c80635fffdfaf11610118578063abff7f6e116100a0578063e985e9c51161006f578063e985e9c5146107a4578063ed5ab3f6146107e1578063f242432a146107fd578063f2fde38b14610826578063f5298aca1461084f5761020e565b8063abff7f6e146106ec578063bd85b03914610715578063c30f3bb114610752578063c75e25e11461077b5761020e565b80638da5cb5b116100e75780638da5cb5b1461061b578063943c19aa1461064657806395d34d9e1461066f578063a22cb46514610698578063ab05ff41146106c15761020e565b80635fffdfaf146105615780636b20c4541461059e5780636c3839e9146105c7578063715018a6146106045761020e565b806326bb1cf71161019b5780633199da021161016a5780633199da021461046a5780633ccfd60b146104a75780634e1273f4146104be5780634e5bcfab146104fb578063570b3c6a146105385761020e565b806326bb1cf7146103c45780632768d709146103ed5780632be9279d146104165780632eb2c2d6146104415761020e565b80630e89341c116101e25780630e89341c146102cd5780630f52b76e1461030a57806314106f86146103215780632094aacc1461034a578063267f8640146103875761020e565b8062fdd58e1461021357806301ffc9a714610250578063086cb7851461028d57806308b58c1d146102a4575b600080fd5b34801561021f57600080fd5b5061023a6004803603810190610235919061368f565b610878565b60405161024791906136de565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190613751565b610941565b6040516102849190613799565b60405180910390f35b34801561029957600080fd5b506102a2610a23565b005b3480156102b057600080fd5b506102cb60048036038101906102c69190613819565b610abc565b005b3480156102d957600080fd5b506102f460048036038101906102ef9190613879565b610b51565b604051610301919061393f565b60405180910390f35b34801561031657600080fd5b5061031f610c18565b005b34801561032d57600080fd5b5061034860048036038101906103439190613961565b610cb1565b005b34801561035657600080fd5b50610371600480360381019061036c9190613879565b610da8565b60405161037e919061393f565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a99190613879565b610e48565b6040516103bb9190613799565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e691906139f4565b610e68565b005b3480156103f957600080fd5b50610414600480360381019061040f9190613ae0565b610f82565b005b34801561042257600080fd5b5061042b611144565b6040516104389190613799565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190613d87565b611157565b005b34801561047657600080fd5b50610491600480360381019061048c9190613e56565b6111f8565b60405161049e9190613799565b60405180910390f35b3480156104b357600080fd5b506104bc611218565b005b3480156104ca57600080fd5b506104e560048036038101906104e09190613f46565b6112e3565b6040516104f2919061407c565b60405180910390f35b34801561050757600080fd5b50610522600480360381019061051d9190613879565b6113fc565b60405161052f91906136de565b60405180910390f35b34801561054457600080fd5b5061055f600480360381019061055a919061409e565b611414565b005b34801561056d57600080fd5b5061058860048036038101906105839190613879565b611531565b60405161059591906136de565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c091906140eb565b611549565b005b3480156105d357600080fd5b506105ee60048036038101906105e99190613879565b6115e6565b6040516105fb91906136de565b60405180910390f35b34801561061057600080fd5b506106196115fe565b005b34801561062757600080fd5b50610630611686565b60405161063d9190614185565b60405180910390f35b34801561065257600080fd5b5061066d600480360381019061066891906141a0565b6116b0565b005b34801561067b57600080fd5b5061069660048036038101906106919190613819565b61187c565b005b3480156106a457600080fd5b506106bf60048036038101906106ba91906139f4565b611981565b005b3480156106cd57600080fd5b506106d6611997565b6040516106e39190613799565b60405180910390f35b3480156106f857600080fd5b50610713600480360381019061070e919061409e565b6119aa565b005b34801561072157600080fd5b5061073c60048036038101906107379190613879565b611a3c565b60405161074991906136de565b60405180910390f35b34801561075e57600080fd5b5061077960048036038101906107749190613879565b611a54565b005b34801561078757600080fd5b506107a2600480360381019061079d9190614289565b611aff565b005b3480156107b057600080fd5b506107cb60048036038101906107c691906142e9565b611c34565b6040516107d89190613799565b60405180910390f35b6107fb60048036038101906107f69190614329565b611c9c565b005b34801561080957600080fd5b50610824600480360381019061081f9190614369565b611e52565b005b34801561083257600080fd5b5061084d60048036038101906108489190613e56565b611ef3565b005b34801561085b57600080fd5b5061087660048036038101906108719190614400565b611feb565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e0906144c5565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a0c57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a1c5750610a1b82612088565b5b9050919050565b610a2b6120f2565b73ffffffffffffffffffffffffffffffffffffffff16610a49611686565b73ffffffffffffffffffffffffffffffffffffffff1614610a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9690614531565b60405180910390fd5b6001600560006101000a81548160ff021916908315150217905550565b610ac46120f2565b73ffffffffffffffffffffffffffffffffffffffff16610ae2611686565b73ffffffffffffffffffffffffffffffffffffffff1614610b38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2f90614531565b60405180910390fd5b610b4383838361187c565b610b4c81611a54565b505050565b60606000600460008481526020019081526020016000208054610b7390614580565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9f90614580565b8015610bec5780601f10610bc157610100808354040283529160200191610bec565b820191906000526020600020905b815481529060010190602001808311610bcf57829003601f168201915b50505050509050600081511415610c0e57610c06836120fa565b915050610c13565b809150505b919050565b610c206120f2565b73ffffffffffffffffffffffffffffffffffffffff16610c3e611686565b73ffffffffffffffffffffffffffffffffffffffff1614610c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8b90614531565b60405180910390fd5b6000600360146101000a81548160ff021916908315150217905550565b610cb96120f2565b73ffffffffffffffffffffffffffffffffffffffff16610cd7611686565b73ffffffffffffffffffffffffffffffffffffffff1614610d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2490614531565b60405180910390fd5b82600860008681526020019081526020016000208190555081600960008681526020019081526020016000208190555080600a600086815260200190815260200160002081905550837f2dac1677998d38e33c4e28b59d542dafacf2c4137a2ff3a8d85b46545c7dd66e60405160405180910390a250505050565b60046020528060005260406000206000915090508054610dc790614580565b80601f0160208091040260200160405190810160405280929190818152602001828054610df390614580565b8015610e405780601f10610e1557610100808354040283529160200191610e40565b820191906000526020600020905b815481529060010190602001808311610e2357829003601f168201915b505050505081565b60066020528060005260406000206000915054906101000a900460ff1681565b610e706120f2565b73ffffffffffffffffffffffffffffffffffffffff16610e8e611686565b73ffffffffffffffffffffffffffffffffffffffff1614610ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edb90614531565b60405180910390fd5b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fe7e87d526025768dfbff568780e9eb516bfc7a7d59de38505d40c54b45a78e1060405160405180910390a25050565b610f8a6120f2565b73ffffffffffffffffffffffffffffffffffffffff16610fa8611686565b73ffffffffffffffffffffffffffffffffffffffff1614610ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff590614531565b60405180910390fd5b600360149054906101000a900460ff1661104d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611044906145fe565b60405180910390fd5b838390508686905014801561106757508181905084849050145b6110a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109d9061466a565b60405180910390fd5b60005b8686905081101561113b576111288787838181106110ca576110c961468a565b5b90506020020160208101906110df9190613e56565b8686848181106110f2576110f161468a565b5b9050602002013585858581811061110c5761110b61468a565b5b905060200201356040518060200160405280600081525061218e565b8080611133906146e8565b9150506110a9565b50505050505050565b600360149054906101000a900460ff1681565b61115f6120f2565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806111a557506111a48561119f6120f2565b611c34565b5b6111e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111db906147a3565b60405180910390fd5b6111f18585858585612324565b5050505050565b600b6020528060005260406000206000915054906101000a900460ff1681565b6112206120f2565b73ffffffffffffffffffffffffffffffffffffffff1661123e611686565b73ffffffffffffffffffffffffffffffffffffffff1614611294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b90614531565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112df573d6000803e3d6000fd5b5050565b60608151835114611329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132090614835565b60405180910390fd5b6000835167ffffffffffffffff81111561134657611345613b94565b5b6040519080825280602002602001820160405280156113745781602001602082028036833780820191505090505b50905060005b84518110156113f1576113c18582815181106113995761139861468a565b5b60200260200101518583815181106113b4576113b361468a565b5b6020026020010151610878565b8282815181106113d4576113d361468a565b5b602002602001018181525050806113ea906146e8565b905061137a565b508091505092915050565b60096020528060005260406000206000915090505481565b61141c6120f2565b73ffffffffffffffffffffffffffffffffffffffff1661143a611686565b73ffffffffffffffffffffffffffffffffffffffff1614611490576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148790614531565b60405180910390fd5b600560009054906101000a900460ff16156114e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d7906148a1565b60405180910390fd5b61152d82828080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612638565b5050565b600a6020528060005260406000206000915090505481565b6115516120f2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806115975750611596836115916120f2565b611c34565b5b6115d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cd90614933565b60405180910390fd5b6115e1838383612652565b505050565b60086020528060005260406000206000915090505481565b6116066120f2565b73ffffffffffffffffffffffffffffffffffffffff16611624611686565b73ffffffffffffffffffffffffffffffffffffffff161461167a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167190614531565b60405180910390fd5b6116846000612903565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116b86120f2565b73ffffffffffffffffffffffffffffffffffffffff166116d6611686565b73ffffffffffffffffffffffffffffffffffffffff161461172c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172390614531565b60405180910390fd5b60005b888890508110156118715786868281811061174d5761174c61468a565b5b90506020020135600860008b8b8581811061176b5761176a61468a565b5b905060200201358152602001908152602001600020819055508484828181106117975761179661468a565b5b90506020020135600960008b8b858181106117b5576117b461468a565b5b905060200201358152602001908152602001600020819055508282828181106117e1576117e061468a565b5b90506020020135600a60008b8b858181106117ff576117fe61468a565b5b9050602002013581526020019081526020016000208190555088888281811061182b5761182a61468a565b5b905060200201357f2dac1677998d38e33c4e28b59d542dafacf2c4137a2ff3a8d85b46545c7dd66e60405160405180910390a28080611869906146e8565b91505061172f565b505050505050505050565b6118846120f2565b73ffffffffffffffffffffffffffffffffffffffff166118a2611686565b73ffffffffffffffffffffffffffffffffffffffff16146118f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ef90614531565b60405180910390fd5b6006600082815260200190815260200160002060009054906101000a900460ff1615611959576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611950906148a1565b60405180910390fd5b828260046000848152602001908152602001600020919061197b9291906134be565b50505050565b61199361198c6120f2565b83836129c9565b5050565b600560009054906101000a900460ff1681565b6119b26120f2565b73ffffffffffffffffffffffffffffffffffffffff166119d0611686565b73ffffffffffffffffffffffffffffffffffffffff1614611a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1d90614531565b60405180910390fd5b611a308282611414565b611a38610a23565b5050565b60076020528060005260406000206000915090505481565b611a5c6120f2565b73ffffffffffffffffffffffffffffffffffffffff16611a7a611686565b73ffffffffffffffffffffffffffffffffffffffff1614611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac790614531565b60405180910390fd5b60016006600083815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611b076120f2565b73ffffffffffffffffffffffffffffffffffffffff16611b25611686565b73ffffffffffffffffffffffffffffffffffffffff1614611b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7290614531565b60405180910390fd5b600360149054906101000a900460ff16611bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc1906145fe565b60405180910390fd5b60005b83839050811015611c2e57611c1b848483818110611bee57611bed61468a565b5b9050602002016020810190611c039190613e56565b8360016040518060200160405280600081525061218e565b8080611c26906146e8565b915050611bcd565b50505050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611c945750611c938383612b36565b5b905092915050565b600960008381526020019081526020016000205481611cbb9190614953565b3414611cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf3906149f9565b60405180910390fd5b600a600083815260200190815260200160002054811115611d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4990614a65565b60405180910390fd5b60008111611d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8c90614ad1565b60405180910390fd5b6008600083815260200190815260200160002054816007600085815260200190815260200160002054611dc89190614af1565b1115611e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0090614b93565b60405180910390fd5b80600760008481526020019081526020016000206000828254611e2c9190614af1565b92505081905550611e4e3383836040518060200160405280600081525061218e565b5050565b611e5a6120f2565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611ea05750611e9f85611e9a6120f2565b611c34565b5b611edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed690614933565b60405180910390fd5b611eec8585858585612bca565b5050505050565b611efb6120f2565b73ffffffffffffffffffffffffffffffffffffffff16611f19611686565b73ffffffffffffffffffffffffffffffffffffffff1614611f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6690614531565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd690614c25565b60405180910390fd5b611fe881612903565b50565b611ff36120f2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806120395750612038836120336120f2565b611c34565b5b612078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206f90614933565b60405180910390fd5b612083838383612e4c565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60606002805461210990614580565b80601f016020809104026020016040519081016040528092919081815260200182805461213590614580565b80156121825780601f1061215757610100808354040283529160200191612182565b820191906000526020600020905b81548152906001019060200180831161216557829003601f168201915b50505050509050919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156121fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f590614cb7565b60405180910390fd5b60006122086120f2565b90506122298160008761221a88613069565b61222388613069565b876130e3565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122889190614af1565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612306929190614cd7565b60405180910390a461231d816000878787876130eb565b5050505050565b8151835114612368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235f90614d72565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cf90614e04565b60405180910390fd5b60006123e26120f2565b90506123f28187878787876130e3565b60005b84518110156125a35760008582815181106124135761241261468a565b5b6020026020010151905060008583815181106124325761243161468a565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156124d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ca90614e96565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125889190614af1565b925050819055505050508061259c906146e8565b90506123f5565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161261a929190614eb6565b60405180910390a46126308187878787876132c3565b505050505050565b806002908051906020019061264e929190613544565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b990614f5f565b60405180910390fd5b8051825114612706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fd90614d72565b60405180910390fd5b60006127106120f2565b9050612730818560008686604051806020016040528060008152506130e3565b60005b835181101561287d5760008482815181106127515761275061468a565b5b6020026020010151905060008483815181106127705761276f61468a565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280890614ff1565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050508080612875906146e8565b915050612733565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516128f5929190614eb6565b60405180910390a450505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2f90615083565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612b299190613799565b60405180910390a3505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3190614e04565b60405180910390fd5b6000612c446120f2565b9050612c64818787612c5588613069565b612c5e88613069565b876130e3565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf290614e96565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612db09190614af1565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612e2d929190614cd7565b60405180910390a4612e438288888888886130eb565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb390614f5f565b60405180910390fd5b6000612ec66120f2565b9050612ef681856000612ed887613069565b612ee187613069565b604051806020016040528060008152506130e3565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8490614ff1565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161305a929190614cd7565b60405180910390a45050505050565b60606000600167ffffffffffffffff81111561308857613087613b94565b5b6040519080825280602002602001820160405280156130b65781602001602082028036833780820191505090505b50905082816000815181106130ce576130cd61468a565b5b60200260200101818152505080915050919050565b505050505050565b61310a8473ffffffffffffffffffffffffffffffffffffffff1661349b565b156132bb578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016131509594939291906150f8565b6020604051808303816000875af192505050801561318c57506040513d601f19601f820116820180604052508101906131899190615167565b60015b613232576131986151a1565b806308c379a014156131f557506131ad6151c3565b806131b857506131f7565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ec919061393f565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613229906152cb565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146132b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b09061535d565b60405180910390fd5b505b505050505050565b6132e28473ffffffffffffffffffffffffffffffffffffffff1661349b565b15613493578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161332895949392919061537d565b6020604051808303816000875af192505050801561336457506040513d601f19601f820116820180604052508101906133619190615167565b60015b61340a576133706151a1565b806308c379a014156133cd57506133856151c3565b8061339057506133cf565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133c4919061393f565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613401906152cb565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613491576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134889061535d565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546134ca90614580565b90600052602060002090601f0160209004810192826134ec5760008555613533565b82601f1061350557803560ff1916838001178555613533565b82800160010185558215613533579182015b82811115613532578235825591602001919060010190613517565b5b50905061354091906135ca565b5090565b82805461355090614580565b90600052602060002090601f01602090048101928261357257600085556135b9565b82601f1061358b57805160ff19168380011785556135b9565b828001600101855582156135b9579182015b828111156135b857825182559160200191906001019061359d565b5b5090506135c691906135ca565b5090565b5b808211156135e35760008160009055506001016135cb565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613626826135fb565b9050919050565b6136368161361b565b811461364157600080fd5b50565b6000813590506136538161362d565b92915050565b6000819050919050565b61366c81613659565b811461367757600080fd5b50565b60008135905061368981613663565b92915050565b600080604083850312156136a6576136a56135f1565b5b60006136b485828601613644565b92505060206136c58582860161367a565b9150509250929050565b6136d881613659565b82525050565b60006020820190506136f360008301846136cf565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61372e816136f9565b811461373957600080fd5b50565b60008135905061374b81613725565b92915050565b600060208284031215613767576137666135f1565b5b60006137758482850161373c565b91505092915050565b60008115159050919050565b6137938161377e565b82525050565b60006020820190506137ae600083018461378a565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126137d9576137d86137b4565b5b8235905067ffffffffffffffff8111156137f6576137f56137b9565b5b602083019150836001820283011115613812576138116137be565b5b9250929050565b600080600060408486031215613832576138316135f1565b5b600084013567ffffffffffffffff8111156138505761384f6135f6565b5b61385c868287016137c3565b9350935050602061386f8682870161367a565b9150509250925092565b60006020828403121561388f5761388e6135f1565b5b600061389d8482850161367a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138e05780820151818401526020810190506138c5565b838111156138ef576000848401525b50505050565b6000601f19601f8301169050919050565b6000613911826138a6565b61391b81856138b1565b935061392b8185602086016138c2565b613934816138f5565b840191505092915050565b600060208201905081810360008301526139598184613906565b905092915050565b6000806000806080858703121561397b5761397a6135f1565b5b60006139898782880161367a565b945050602061399a8782880161367a565b93505060406139ab8782880161367a565b92505060606139bc8782880161367a565b91505092959194509250565b6139d18161377e565b81146139dc57600080fd5b50565b6000813590506139ee816139c8565b92915050565b60008060408385031215613a0b57613a0a6135f1565b5b6000613a1985828601613644565b9250506020613a2a858286016139df565b9150509250929050565b60008083601f840112613a4a57613a496137b4565b5b8235905067ffffffffffffffff811115613a6757613a666137b9565b5b602083019150836020820283011115613a8357613a826137be565b5b9250929050565b60008083601f840112613aa057613a9f6137b4565b5b8235905067ffffffffffffffff811115613abd57613abc6137b9565b5b602083019150836020820283011115613ad957613ad86137be565b5b9250929050565b60008060008060008060608789031215613afd57613afc6135f1565b5b600087013567ffffffffffffffff811115613b1b57613b1a6135f6565b5b613b2789828a01613a34565b9650965050602087013567ffffffffffffffff811115613b4a57613b496135f6565b5b613b5689828a01613a8a565b9450945050604087013567ffffffffffffffff811115613b7957613b786135f6565b5b613b8589828a01613a8a565b92509250509295509295509295565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613bcc826138f5565b810181811067ffffffffffffffff82111715613beb57613bea613b94565b5b80604052505050565b6000613bfe6135e7565b9050613c0a8282613bc3565b919050565b600067ffffffffffffffff821115613c2a57613c29613b94565b5b602082029050602081019050919050565b6000613c4e613c4984613c0f565b613bf4565b90508083825260208201905060208402830185811115613c7157613c706137be565b5b835b81811015613c9a5780613c86888261367a565b845260208401935050602081019050613c73565b5050509392505050565b600082601f830112613cb957613cb86137b4565b5b8135613cc9848260208601613c3b565b91505092915050565b600080fd5b600067ffffffffffffffff821115613cf257613cf1613b94565b5b613cfb826138f5565b9050602081019050919050565b82818337600083830152505050565b6000613d2a613d2584613cd7565b613bf4565b905082815260208101848484011115613d4657613d45613cd2565b5b613d51848285613d08565b509392505050565b600082601f830112613d6e57613d6d6137b4565b5b8135613d7e848260208601613d17565b91505092915050565b600080600080600060a08688031215613da357613da26135f1565b5b6000613db188828901613644565b9550506020613dc288828901613644565b945050604086013567ffffffffffffffff811115613de357613de26135f6565b5b613def88828901613ca4565b935050606086013567ffffffffffffffff811115613e1057613e0f6135f6565b5b613e1c88828901613ca4565b925050608086013567ffffffffffffffff811115613e3d57613e3c6135f6565b5b613e4988828901613d59565b9150509295509295909350565b600060208284031215613e6c57613e6b6135f1565b5b6000613e7a84828501613644565b91505092915050565b600067ffffffffffffffff821115613e9e57613e9d613b94565b5b602082029050602081019050919050565b6000613ec2613ebd84613e83565b613bf4565b90508083825260208201905060208402830185811115613ee557613ee46137be565b5b835b81811015613f0e5780613efa8882613644565b845260208401935050602081019050613ee7565b5050509392505050565b600082601f830112613f2d57613f2c6137b4565b5b8135613f3d848260208601613eaf565b91505092915050565b60008060408385031215613f5d57613f5c6135f1565b5b600083013567ffffffffffffffff811115613f7b57613f7a6135f6565b5b613f8785828601613f18565b925050602083013567ffffffffffffffff811115613fa857613fa76135f6565b5b613fb485828601613ca4565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613ff381613659565b82525050565b60006140058383613fea565b60208301905092915050565b6000602082019050919050565b600061402982613fbe565b6140338185613fc9565b935061403e83613fda565b8060005b8381101561406f5781516140568882613ff9565b975061406183614011565b925050600181019050614042565b5085935050505092915050565b60006020820190508181036000830152614096818461401e565b905092915050565b600080602083850312156140b5576140b46135f1565b5b600083013567ffffffffffffffff8111156140d3576140d26135f6565b5b6140df858286016137c3565b92509250509250929050565b600080600060608486031215614104576141036135f1565b5b600061411286828701613644565b935050602084013567ffffffffffffffff811115614133576141326135f6565b5b61413f86828701613ca4565b925050604084013567ffffffffffffffff8111156141605761415f6135f6565b5b61416c86828701613ca4565b9150509250925092565b61417f8161361b565b82525050565b600060208201905061419a6000830184614176565b92915050565b6000806000806000806000806080898b0312156141c0576141bf6135f1565b5b600089013567ffffffffffffffff8111156141de576141dd6135f6565b5b6141ea8b828c01613a8a565b9850985050602089013567ffffffffffffffff81111561420d5761420c6135f6565b5b6142198b828c01613a8a565b9650965050604089013567ffffffffffffffff81111561423c5761423b6135f6565b5b6142488b828c01613a8a565b9450945050606089013567ffffffffffffffff81111561426b5761426a6135f6565b5b6142778b828c01613a8a565b92509250509295985092959890939650565b6000806000604084860312156142a2576142a16135f1565b5b600084013567ffffffffffffffff8111156142c0576142bf6135f6565b5b6142cc86828701613a34565b935093505060206142df8682870161367a565b9150509250925092565b60008060408385031215614300576142ff6135f1565b5b600061430e85828601613644565b925050602061431f85828601613644565b9150509250929050565b600080604083850312156143405761433f6135f1565b5b600061434e8582860161367a565b925050602061435f8582860161367a565b9150509250929050565b600080600080600060a08688031215614385576143846135f1565b5b600061439388828901613644565b95505060206143a488828901613644565b94505060406143b58882890161367a565b93505060606143c68882890161367a565b925050608086013567ffffffffffffffff8111156143e7576143e66135f6565b5b6143f388828901613d59565b9150509295509295909350565b600080600060608486031215614419576144186135f1565b5b600061442786828701613644565b93505060206144388682870161367a565b92505060406144498682870161367a565b9150509250925092565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006144af602b836138b1565b91506144ba82614453565b604082019050919050565b600060208201905081810360008301526144de816144a2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061451b6020836138b1565b9150614526826144e5565b602082019050919050565b6000602082019050818103600083015261454a8161450e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061459857607f821691505b602082108114156145ac576145ab614551565b5b50919050565b7f4e6f7420616c6c6f776564000000000000000000000000000000000000000000600082015250565b60006145e8600b836138b1565b91506145f3826145b2565b602082019050919050565b60006020820190508181036000830152614617816145db565b9050919050565b7f426164206172726179206c656e67746873000000000000000000000000000000600082015250565b60006146546011836138b1565b915061465f8261461e565b602082019050919050565b6000602082019050818103600083015261468381614647565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006146f382613659565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614726576147256146b9565b5b600182019050919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b600061478d6032836138b1565b915061479882614731565b604082019050919050565b600060208201905081810360008301526147bc81614780565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b600061481f6029836138b1565b915061482a826147c3565b604082019050919050565b6000602082019050818103600083015261484e81614812565b9050919050565b7f467265657a656400000000000000000000000000000000000000000000000000600082015250565b600061488b6007836138b1565b915061489682614855565b602082019050919050565b600060208201905081810360008301526148ba8161487e565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b600061491d6029836138b1565b9150614928826148c1565b604082019050919050565b6000602082019050818103600083015261494c81614910565b9050919050565b600061495e82613659565b915061496983613659565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149a2576149a16146b9565b5b828202905092915050565b7f57726f6e67204554482076616c75650000000000000000000000000000000000600082015250565b60006149e3600f836138b1565b91506149ee826149ad565b602082019050919050565b60006020820190508181036000830152614a12816149d6565b9050919050565b7f506572207478206c696d69742065786365656465640000000000000000000000600082015250565b6000614a4f6015836138b1565b9150614a5a82614a19565b602082019050919050565b60006020820190508181036000830152614a7e81614a42565b9050919050565b7f43616e2774206d696e7420300000000000000000000000000000000000000000600082015250565b6000614abb600c836138b1565b9150614ac682614a85565b602082019050919050565b60006020820190508181036000830152614aea81614aae565b9050919050565b6000614afc82613659565b9150614b0783613659565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b3c57614b3b6146b9565b5b828201905092915050565b7f537570706c792065786365656465640000000000000000000000000000000000600082015250565b6000614b7d600f836138b1565b9150614b8882614b47565b602082019050919050565b60006020820190508181036000830152614bac81614b70565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614c0f6026836138b1565b9150614c1a82614bb3565b604082019050919050565b60006020820190508181036000830152614c3e81614c02565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614ca16021836138b1565b9150614cac82614c45565b604082019050919050565b60006020820190508181036000830152614cd081614c94565b9050919050565b6000604082019050614cec60008301856136cf565b614cf960208301846136cf565b9392505050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000614d5c6028836138b1565b9150614d6782614d00565b604082019050919050565b60006020820190508181036000830152614d8b81614d4f565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614dee6025836138b1565b9150614df982614d92565b604082019050919050565b60006020820190508181036000830152614e1d81614de1565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000614e80602a836138b1565b9150614e8b82614e24565b604082019050919050565b60006020820190508181036000830152614eaf81614e73565b9050919050565b60006040820190508181036000830152614ed0818561401e565b90508181036020830152614ee4818461401e565b90509392505050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614f496023836138b1565b9150614f5482614eed565b604082019050919050565b60006020820190508181036000830152614f7881614f3c565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000614fdb6024836138b1565b9150614fe682614f7f565b604082019050919050565b6000602082019050818103600083015261500a81614fce565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b600061506d6029836138b1565b915061507882615011565b604082019050919050565b6000602082019050818103600083015261509c81615060565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006150ca826150a3565b6150d481856150ae565b93506150e48185602086016138c2565b6150ed816138f5565b840191505092915050565b600060a08201905061510d6000830188614176565b61511a6020830187614176565b61512760408301866136cf565b61513460608301856136cf565b818103608083015261514681846150bf565b90509695505050505050565b60008151905061516181613725565b92915050565b60006020828403121561517d5761517c6135f1565b5b600061518b84828501615152565b91505092915050565b60008160e01c9050919050565b600060033d11156151c05760046000803e6151bd600051615194565b90505b90565b600060443d10156151d357615256565b6151db6135e7565b60043d036004823e80513d602482011167ffffffffffffffff82111715615203575050615256565b808201805167ffffffffffffffff8111156152215750505050615256565b80602083010160043d03850181111561523e575050505050615256565b61524d82602001850186613bc3565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b60006152b56034836138b1565b91506152c082615259565b604082019050919050565b600060208201905081810360008301526152e4816152a8565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006153476028836138b1565b9150615352826152eb565b604082019050919050565b600060208201905081810360008301526153768161533a565b9050919050565b600060a0820190506153926000830188614176565b61539f6020830187614176565b81810360408301526153b1818661401e565b905081810360608301526153c5818561401e565b905081810360808301526153d981846150bf565b9050969550505050505056fea26469706673582212202d16995baf6519f319949324fa46a883b7389b98893c2223cf755dee84f762ec64736f6c634300080c0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _uri (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

38144:5902:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23431:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22454:310;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42572:76;;;;;;;;;;;;;:::i;:::-;;43365:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42029:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39470:90;;;;;;;;;;;;;:::i;:::-;;40650:293;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38319:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38484:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39625:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39853:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38244:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25370:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38929:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43898:145;;;;;;;;;;;;;:::i;:::-;;23828:524;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38748:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42370:138;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38832:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37700:353;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38665:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2618:103;;;;;;;;;;;;;:::i;:::-;;1967:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41019:453;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42932:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24425:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38406:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42724:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38578:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43180:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40324:260;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43605:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41523:458;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24892:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2876:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37371:321;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23431:231;23517:7;23564:1;23545:21;;:7;:21;;;;23537:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;23632:9;:13;23642:2;23632:13;;;;;;;;;;;:22;23646:7;23632:22;;;;;;;;;;;;;;;;23625:29;;23431:231;;;;:::o;22454:310::-;22556:4;22608:26;22593:41;;;:11;:41;;;;:110;;;;22666:37;22651:52;;;:11;:52;;;;22593:110;:163;;;;22720:36;22744:11;22720:23;:36::i;:::-;22593:163;22573:183;;22454:310;;;:::o;42572:76::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42636:4:::1;42621:12;;:19;;;;;;;;;;;;;;;;;;42572:76::o:0;43365:175::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43465:32:::1;43482:6;;43490;43465:16;:32::i;:::-;43508:24;43525:6;43508:16;:24::i;:::-;43365:175:::0;;;:::o;42029:274::-;42088:13;42114:21;42138:9;:17;42148:6;42138:17;;;;;;;;;;;42114:41;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42195:1;42176:7;42170:21;:26;42166:130;;;42220:17;42230:6;42220:9;:17::i;:::-;42213:24;;;;;42166:130;42277:7;42270:14;;;42029:274;;;;:::o;39470:90::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39547:5:::1;39527:17;;:25;;;;;;;;;;;;;;;;;;39470:90::o:0;40650:293::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40801:11:::1;40775:15;:23;40791:6;40775:23;;;;;;;;;;;:37;;;;40843:5;40823:9;:17;40833:6;40823:17;;;;;;;;;;;:25;;;;40884:10;40859:14;:22;40874:6;40859:22;;;;;;;;;;;:35;;;;40928:6;40912:23;;;;;;;;;;40650:293:::0;;;;:::o;38319:44::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38484:49::-;;;;;;;;;;;;;;;;;;;;;;:::o;39625:152::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39727:5:::1;39704:14;:20;39719:4;39704:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;39764:4;39748:21;;;;;;;;;;;;39625:152:::0;;:::o;39853:400::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39986:17:::1;;;;;;;;;;;39978:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;40053:5;;:12;;40036:6;;:13;;:29;:62;;;;;40085:6;;:13;;40069:5;;:12;;:29;40036:62;40028:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;40145:9;40140:106;40164:6;;:13;;40160:1;:17;40140:106;;;40195:41;40201:6;;40208:1;40201:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;40212:5;;40218:1;40212:8;;;;;;;:::i;:::-;;;;;;;;40222:6;;40229:1;40222:9;;;;;;;:::i;:::-;;;;;;;;40195:41;;;;;;;;;;;::::0;:5:::1;:41::i;:::-;40179:3;;;;;:::i;:::-;;;;40140:106;;;;39853:400:::0;;;;;;:::o;38244:36::-;;;;;;;;;;;;;:::o;25370:442::-;25611:12;:10;:12::i;:::-;25603:20;;:4;:20;;;:60;;;;25627:36;25644:4;25650:12;:10;:12::i;:::-;25627:16;:36::i;:::-;25603:60;25581:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;25752:52;25775:4;25781:2;25785:3;25790:7;25799:4;25752:22;:52::i;:::-;25370:442;;;;;:::o;38929:47::-;;;;;;;;;;;;;;;;;;;;;;:::o;43898:145::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43948:15:::1;43966:21;43948:39;;44006:10;43998:28;;:37;44027:7;43998:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;43937:106;43898:145::o:0;23828:524::-;23984:16;24045:3;:10;24026:8;:15;:29;24018:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;24114:30;24161:8;:15;24147:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24114:63;;24195:9;24190:122;24214:8;:15;24210:1;:19;24190:122;;;24270:30;24280:8;24289:1;24280:11;;;;;;;;:::i;:::-;;;;;;;;24293:3;24297:1;24293:6;;;;;;;;:::i;:::-;;;;;;;;24270:9;:30::i;:::-;24251:13;24265:1;24251:16;;;;;;;;:::i;:::-;;;;;;;:49;;;;;24231:3;;;;:::i;:::-;;;24190:122;;;;24331:13;24324:20;;;23828:524;;;;:::o;38748:44::-;;;;;;;;;;;;;;;;;:::o;42370:138::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42450:12:::1;;;;;;;;;;;42449:13;42441:33;;;;;;;;;;;;:::i;:::-;;;;;;;;;42485:15;42493:6;;42485:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:7;:15::i;:::-;42370:138:::0;;:::o;38832:49::-;;;;;;;;;;;;;;;;;:::o;37700:353::-;37876:12;:10;:12::i;:::-;37865:23;;:7;:23;;;:66;;;;37892:39;37909:7;37918:12;:10;:12::i;:::-;37892:16;:39::i;:::-;37865:66;37843:157;;;;;;;;;;;;:::i;:::-;;;;;;;;;38013:32;38024:7;38033:3;38038:6;38013:10;:32::i;:::-;37700:353;;;:::o;38665:50::-;;;;;;;;;;;;;;;;;:::o;2618:103::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2683:30:::1;2710:1;2683:18;:30::i;:::-;2618:103::o:0;1967:87::-;2013:7;2040:6;;;;;;;;;;;2033:13;;1967:87;:::o;41019:453::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41202:9:::1;41197:268;41217:7;;:14;;41215:1;:16;41197:268;;;41283:12;;41296:1;41283:15;;;;;;;:::i;:::-;;;;;;;;41253;:27;41269:7;;41277:1;41269:10;;;;;;;:::i;:::-;;;;;;;;41253:27;;;;;;;;;;;:45;;;;41337:6;;41344:1;41337:9;;;;;;;:::i;:::-;;;;;;;;41313;:21;41323:7;;41331:1;41323:10;;;;;;;:::i;:::-;;;;;;;;41313:21;;;;;;;;;;;:33;;;;41390:11;;41402:1;41390:14;;;;;;;:::i;:::-;;;;;;;;41361;:26;41376:7;;41384:1;41376:10;;;;;;;:::i;:::-;;;;;;;;41361:26;;;;;;;;;;;:43;;;;41442:7;;41450:1;41442:10;;;;;;;:::i;:::-;;;;;;;;41426:27;;;;;;;;;;41233:3;;;;;:::i;:::-;;;;41197:268;;;;41019:453:::0;;;;;;;;:::o;42932:184::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43035:16:::1;:24;43052:6;43035:24;;;;;;;;;;;;;;;;;;;;;43034:25;43026:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;43102:6;;43082:9;:17;43092:6;43082:17;;;;;;;;;;;:26;;;;;;;:::i;:::-;;42932:184:::0;;;:::o;24425:155::-;24520:52;24539:12;:10;:12::i;:::-;24553:8;24563;24520:18;:52::i;:::-;24425:155;;:::o;38406:24::-;;;;;;;;;;;;;:::o;42724:124::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42801:17:::1;42811:6;;42801:9;:17::i;:::-;42829:11;:9;:11::i;:::-;42724:124:::0;;:::o;38578:47::-;;;;;;;;;;;;;;;;;:::o;43180:109::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43277:4:::1;43250:16;:24;43267:6;43250:24;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;43180:109:::0;:::o;40324:260::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40428:17:::1;;;;;;;;;;;40420:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;40486:9;40481:96;40505:6;;:13;;40501:1;:17;40481:96;;;40536:31;40542:6;;40549:1;40542:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;40553:6;40561:1;40536:31;;;;;;;;;;;::::0;:5:::1;:31::i;:::-;40520:3;;;;;:::i;:::-;;;;40481:96;;;;40324:260:::0;;;:::o;43605:200::-;43704:4;43728:14;:24;43743:8;43728:24;;;;;;;;;;;;;;;;;;;;;;;;;:69;;;;43756:41;43779:7;43788:8;43756:22;:41::i;:::-;43728:69;43721:76;;43605:200;;;;:::o;41523:458::-;41629:9;:17;41639:6;41629:17;;;;;;;;;;;;41622:6;:24;;;;:::i;:::-;41609:9;:37;41601:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;41695:14;:22;41710:6;41695:22;;;;;;;;;;;;41685:6;:32;;41677:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;41771:1;41762:6;:10;41754:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;41840:15;:23;41856:6;41840:23;;;;;;;;;;;;41830:6;41808:11;:19;41820:6;41808:19;;;;;;;;;;;;:28;;;;:::i;:::-;:55;;41800:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;41919:6;41896:11;:19;41908:6;41896:19;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;41936:37;41942:10;41954:6;41962;41936:37;;;;;;;;;;;;:5;:37::i;:::-;41523:458;;:::o;24892:401::-;25108:12;:10;:12::i;:::-;25100:20;;:4;:20;;;:60;;;;25124:36;25141:4;25147:12;:10;:12::i;:::-;25124:16;:36::i;:::-;25100:60;25078:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;25240:45;25258:4;25264:2;25268;25272:6;25280:4;25240:17;:45::i;:::-;24892:401;;;;;:::o;2876:201::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2985:1:::1;2965:22;;:8;:22;;;;2957:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3041:28;3060:8;3041:18;:28::i;:::-;2876:201:::0;:::o;37371:321::-;37522:12;:10;:12::i;:::-;37511:23;;:7;:23;;;:66;;;;37538:39;37555:7;37564:12;:10;:12::i;:::-;37538:16;:39::i;:::-;37511:66;37489:157;;;;;;;;;;;;:::i;:::-;;;;;;;;;37659:25;37665:7;37674:2;37678:5;37659;:25::i;:::-;37371:321;;;:::o;13738:157::-;13823:4;13862:25;13847:40;;;:11;:40;;;;13840:47;;13738:157;;;:::o;685:98::-;738:7;765:10;758:17;;685:98;:::o;23175:105::-;23235:13;23268:4;23261:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23175:105;;;:::o;29846:569::-;30013:1;29999:16;;:2;:16;;;;29991:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;30066:16;30085:12;:10;:12::i;:::-;30066:31;;30110:102;30131:8;30149:1;30153:2;30157:21;30175:2;30157:17;:21::i;:::-;30180:25;30198:6;30180:17;:25::i;:::-;30207:4;30110:20;:102::i;:::-;30246:6;30225:9;:13;30235:2;30225:13;;;;;;;;;;;:17;30239:2;30225:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;30305:2;30268:52;;30301:1;30268:52;;30283:8;30268:52;;;30309:2;30313:6;30268:52;;;;;;;:::i;:::-;;;;;;;;30333:74;30364:8;30382:1;30386:2;30390;30394:6;30402:4;30333:30;:74::i;:::-;29980:435;29846:569;;;;:::o;27454:1074::-;27681:7;:14;27667:3;:10;:28;27659:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;27773:1;27759:16;;:2;:16;;;;27751:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;27830:16;27849:12;:10;:12::i;:::-;27830:31;;27874:60;27895:8;27905:4;27911:2;27915:3;27920:7;27929:4;27874:20;:60::i;:::-;27952:9;27947:421;27971:3;:10;27967:1;:14;27947:421;;;28003:10;28016:3;28020:1;28016:6;;;;;;;;:::i;:::-;;;;;;;;28003:19;;28037:14;28054:7;28062:1;28054:10;;;;;;;;:::i;:::-;;;;;;;;28037:27;;28081:19;28103:9;:13;28113:2;28103:13;;;;;;;;;;;:19;28117:4;28103:19;;;;;;;;;;;;;;;;28081:41;;28160:6;28145:11;:21;;28137:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;28293:6;28279:11;:20;28257:9;:13;28267:2;28257:13;;;;;;;;;;;:19;28271:4;28257:19;;;;;;;;;;;;;;;:42;;;;28350:6;28329:9;:13;28339:2;28329:13;;;;;;;;;;;:17;28343:2;28329:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;27988:380;;;27983:3;;;;:::i;:::-;;;27947:421;;;;28415:2;28385:47;;28409:4;28385:47;;28399:8;28385:47;;;28419:3;28424:7;28385:47;;;;;;;:::i;:::-;;;;;;;;28445:75;28481:8;28491:4;28497:2;28501:3;28506:7;28515:4;28445:35;:75::i;:::-;27648:880;27454:1074;;;;;:::o;29372:88::-;29446:6;29439:4;:13;;;;;;;;;;;;:::i;:::-;;29372:88;:::o;32607:891::-;32775:1;32759:18;;:4;:18;;;;32751:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;32850:7;:14;32836:3;:10;:28;32828:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;32922:16;32941:12;:10;:12::i;:::-;32922:31;;32966:66;32987:8;32997:4;33011:1;33015:3;33020:7;32966:66;;;;;;;;;;;;:20;:66::i;:::-;33050:9;33045:373;33069:3;:10;33065:1;:14;33045:373;;;33101:10;33114:3;33118:1;33114:6;;;;;;;;:::i;:::-;;;;;;;;33101:19;;33135:14;33152:7;33160:1;33152:10;;;;;;;;:::i;:::-;;;;;;;;33135:27;;33179:19;33201:9;:13;33211:2;33201:13;;;;;;;;;;;:19;33215:4;33201:19;;;;;;;;;;;;;;;;33179:41;;33258:6;33243:11;:21;;33235:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;33385:6;33371:11;:20;33349:9;:13;33359:2;33349:13;;;;;;;;;;;:19;33363:4;33349:19;;;;;;;;;;;;;;;:42;;;;33086:332;;;33081:3;;;;;:::i;:::-;;;;33045:373;;;;33473:1;33435:55;;33459:4;33435:55;;33449:8;33435:55;;;33477:3;33482:7;33435:55;;;;;;;:::i;:::-;;;;;;;;32740:758;32607:891;;;:::o;3237:191::-;3311:16;3330:6;;;;;;;;;;;3311:25;;3356:8;3347:6;;:17;;;;;;;;;;;;;;;;;;3411:8;3380:40;;3401:8;3380:40;;;;;;;;;;;;3300:128;3237:191;:::o;33640:331::-;33795:8;33786:17;;:5;:17;;;;33778:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;33898:8;33860:18;:25;33879:5;33860:25;;;;;;;;;;;;;;;:35;33886:8;33860:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;33944:8;33922:41;;33937:5;33922:41;;;33954:8;33922:41;;;;;;:::i;:::-;;;;;;;;33640:331;;;:::o;24652:168::-;24751:4;24775:18;:27;24794:7;24775:27;;;;;;;;;;;;;;;:37;24803:8;24775:37;;;;;;;;;;;;;;;;;;;;;;;;;24768:44;;24652:168;;;;:::o;26276:820::-;26478:1;26464:16;;:2;:16;;;;26456:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;26535:16;26554:12;:10;:12::i;:::-;26535:31;;26579:96;26600:8;26610:4;26616:2;26620:21;26638:2;26620:17;:21::i;:::-;26643:25;26661:6;26643:17;:25::i;:::-;26670:4;26579:20;:96::i;:::-;26688:19;26710:9;:13;26720:2;26710:13;;;;;;;;;;;:19;26724:4;26710:19;;;;;;;;;;;;;;;;26688:41;;26763:6;26748:11;:21;;26740:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;26888:6;26874:11;:20;26852:9;:13;26862:2;26852:13;;;;;;;;;;;:19;26866:4;26852:19;;;;;;;;;;;;;;;:42;;;;26937:6;26916:9;:13;26926:2;26916:13;;;;;;;;;;;:17;26930:2;26916:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;26992:2;26961:46;;26986:4;26961:46;;26976:8;26961:46;;;26996:2;27000:6;26961:46;;;;;;;:::i;:::-;;;;;;;;27020:68;27051:8;27061:4;27067:2;27071;27075:6;27083:4;27020:30;:68::i;:::-;26445:651;;26276:820;;;;;:::o;31756:648::-;31899:1;31883:18;;:4;:18;;;;31875:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;31954:16;31973:12;:10;:12::i;:::-;31954:31;;31998:102;32019:8;32029:4;32043:1;32047:21;32065:2;32047:17;:21::i;:::-;32070:25;32088:6;32070:17;:25::i;:::-;31998:102;;;;;;;;;;;;:20;:102::i;:::-;32113:19;32135:9;:13;32145:2;32135:13;;;;;;;;;;;:19;32149:4;32135:19;;;;;;;;;;;;;;;;32113:41;;32188:6;32173:11;:21;;32165:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;32307:6;32293:11;:20;32271:9;:13;32281:2;32271:13;;;;;;;;;;;:19;32285:4;32271:19;;;;;;;;;;;;;;;:42;;;;32381:1;32342:54;;32367:4;32342:54;;32357:8;32342:54;;;32385:2;32389:6;32342:54;;;;;;;:::i;:::-;;;;;;;;31864:540;;31756:648;;;:::o;36729:198::-;36795:16;36824:22;36863:1;36849:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36824:41;;36887:7;36876:5;36882:1;36876:8;;;;;;;;:::i;:::-;;;;;;;:18;;;;;36914:5;36907:12;;;36729:198;;;:::o;34927:221::-;;;;;;;:::o;35156:744::-;35371:15;:2;:13;;;:15::i;:::-;35367:526;;;35424:2;35407:38;;;35446:8;35456:4;35462:2;35466:6;35474:4;35407:72;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35403:479;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;35755:6;35748:14;;;;;;;;;;;:::i;:::-;;;;;;;;35403:479;;;35804:62;;;;;;;;;;:::i;:::-;;;;;;;;35403:479;35541:43;;;35529:55;;;:8;:55;;;;35525:154;;35609:50;;;;;;;;;;:::i;:::-;;;;;;;;35525:154;35480:214;35367:526;35156:744;;;;;;:::o;35908:813::-;36148:15;:2;:13;;;:15::i;:::-;36144:570;;;36201:2;36184:43;;;36228:8;36238:4;36244:3;36249:7;36258:4;36184:79;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36180:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;36576:6;36569:14;;;;;;;;;;;:::i;:::-;;;;;;;;36180:523;;;36625:62;;;;;;;;;;:::i;:::-;;;;;;;;36180:523;36357:48;;;36345:60;;;:8;:60;;;;36341:159;;36430:50;;;;;;;;;;:::i;:::-;;;;;;;;36341:159;36264:251;36144:570;35908:813;;;;;;:::o;4674:326::-;4734:4;4991:1;4969:7;:19;;;:23;4962:30;;4674:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:77::-;878:7;907:5;896:16;;841:77;;;:::o;924:122::-;997:24;1015:5;997:24;:::i;:::-;990:5;987:35;977:63;;1036:1;1033;1026:12;977:63;924:122;:::o;1052:139::-;1098:5;1136:6;1123:20;1114:29;;1152:33;1179:5;1152:33;:::i;:::-;1052:139;;;;:::o;1197:474::-;1265:6;1273;1322:2;1310:9;1301:7;1297:23;1293:32;1290:119;;;1328:79;;:::i;:::-;1290:119;1448:1;1473:53;1518:7;1509:6;1498:9;1494:22;1473:53;:::i;:::-;1463:63;;1419:117;1575:2;1601:53;1646:7;1637:6;1626:9;1622:22;1601:53;:::i;:::-;1591:63;;1546:118;1197:474;;;;;:::o;1677:118::-;1764:24;1782:5;1764:24;:::i;:::-;1759:3;1752:37;1677:118;;:::o;1801:222::-;1894:4;1932:2;1921:9;1917:18;1909:26;;1945:71;2013:1;2002:9;1998:17;1989:6;1945:71;:::i;:::-;1801:222;;;;:::o;2029:149::-;2065:7;2105:66;2098:5;2094:78;2083:89;;2029:149;;;:::o;2184:120::-;2256:23;2273:5;2256:23;:::i;:::-;2249:5;2246:34;2236:62;;2294:1;2291;2284:12;2236:62;2184:120;:::o;2310:137::-;2355:5;2393:6;2380:20;2371:29;;2409:32;2435:5;2409:32;:::i;:::-;2310:137;;;;:::o;2453:327::-;2511:6;2560:2;2548:9;2539:7;2535:23;2531:32;2528:119;;;2566:79;;:::i;:::-;2528:119;2686:1;2711:52;2755:7;2746:6;2735:9;2731:22;2711:52;:::i;:::-;2701:62;;2657:116;2453:327;;;;:::o;2786:90::-;2820:7;2863:5;2856:13;2849:21;2838:32;;2786:90;;;:::o;2882:109::-;2963:21;2978:5;2963:21;:::i;:::-;2958:3;2951:34;2882:109;;:::o;2997:210::-;3084:4;3122:2;3111:9;3107:18;3099:26;;3135:65;3197:1;3186:9;3182:17;3173:6;3135:65;:::i;:::-;2997:210;;;;:::o;3213:117::-;3322:1;3319;3312:12;3336:117;3445:1;3442;3435:12;3459:117;3568:1;3565;3558:12;3596:553;3654:8;3664:6;3714:3;3707:4;3699:6;3695:17;3691:27;3681:122;;3722:79;;:::i;:::-;3681:122;3835:6;3822:20;3812:30;;3865:18;3857:6;3854:30;3851:117;;;3887:79;;:::i;:::-;3851:117;4001:4;3993:6;3989:17;3977:29;;4055:3;4047:4;4039:6;4035:17;4025:8;4021:32;4018:41;4015:128;;;4062:79;;:::i;:::-;4015:128;3596:553;;;;;:::o;4155:674::-;4235:6;4243;4251;4300:2;4288:9;4279:7;4275:23;4271:32;4268:119;;;4306:79;;:::i;:::-;4268:119;4454:1;4443:9;4439:17;4426:31;4484:18;4476:6;4473:30;4470:117;;;4506:79;;:::i;:::-;4470:117;4619:65;4676:7;4667:6;4656:9;4652:22;4619:65;:::i;:::-;4601:83;;;;4397:297;4733:2;4759:53;4804:7;4795:6;4784:9;4780:22;4759:53;:::i;:::-;4749:63;;4704:118;4155:674;;;;;:::o;4835:329::-;4894:6;4943:2;4931:9;4922:7;4918:23;4914:32;4911:119;;;4949:79;;:::i;:::-;4911:119;5069:1;5094:53;5139:7;5130:6;5119:9;5115:22;5094:53;:::i;:::-;5084:63;;5040:117;4835:329;;;;:::o;5170:99::-;5222:6;5256:5;5250:12;5240:22;;5170:99;;;:::o;5275:169::-;5359:11;5393:6;5388:3;5381:19;5433:4;5428:3;5424:14;5409:29;;5275:169;;;;:::o;5450:307::-;5518:1;5528:113;5542:6;5539:1;5536:13;5528:113;;;5627:1;5622:3;5618:11;5612:18;5608:1;5603:3;5599:11;5592:39;5564:2;5561:1;5557:10;5552:15;;5528:113;;;5659:6;5656:1;5653:13;5650:101;;;5739:1;5730:6;5725:3;5721:16;5714:27;5650:101;5499:258;5450:307;;;:::o;5763:102::-;5804:6;5855:2;5851:7;5846:2;5839:5;5835:14;5831:28;5821:38;;5763:102;;;:::o;5871:364::-;5959:3;5987:39;6020:5;5987:39;:::i;:::-;6042:71;6106:6;6101:3;6042:71;:::i;:::-;6035:78;;6122:52;6167:6;6162:3;6155:4;6148:5;6144:16;6122:52;:::i;:::-;6199:29;6221:6;6199:29;:::i;:::-;6194:3;6190:39;6183:46;;5963:272;5871:364;;;;:::o;6241:313::-;6354:4;6392:2;6381:9;6377:18;6369:26;;6441:9;6435:4;6431:20;6427:1;6416:9;6412:17;6405:47;6469:78;6542:4;6533:6;6469:78;:::i;:::-;6461:86;;6241:313;;;;:::o;6560:765::-;6646:6;6654;6662;6670;6719:3;6707:9;6698:7;6694:23;6690:33;6687:120;;;6726:79;;:::i;:::-;6687:120;6846:1;6871:53;6916:7;6907:6;6896:9;6892:22;6871:53;:::i;:::-;6861:63;;6817:117;6973:2;6999:53;7044:7;7035:6;7024:9;7020:22;6999:53;:::i;:::-;6989:63;;6944:118;7101:2;7127:53;7172:7;7163:6;7152:9;7148:22;7127:53;:::i;:::-;7117:63;;7072:118;7229:2;7255:53;7300:7;7291:6;7280:9;7276:22;7255:53;:::i;:::-;7245:63;;7200:118;6560:765;;;;;;;:::o;7331:116::-;7401:21;7416:5;7401:21;:::i;:::-;7394:5;7391:32;7381:60;;7437:1;7434;7427:12;7381:60;7331:116;:::o;7453:133::-;7496:5;7534:6;7521:20;7512:29;;7550:30;7574:5;7550:30;:::i;:::-;7453:133;;;;:::o;7592:468::-;7657:6;7665;7714:2;7702:9;7693:7;7689:23;7685:32;7682:119;;;7720:79;;:::i;:::-;7682:119;7840:1;7865:53;7910:7;7901:6;7890:9;7886:22;7865:53;:::i;:::-;7855:63;;7811:117;7967:2;7993:50;8035:7;8026:6;8015:9;8011:22;7993:50;:::i;:::-;7983:60;;7938:115;7592:468;;;;;:::o;8083:568::-;8156:8;8166:6;8216:3;8209:4;8201:6;8197:17;8193:27;8183:122;;8224:79;;:::i;:::-;8183:122;8337:6;8324:20;8314:30;;8367:18;8359:6;8356:30;8353:117;;;8389:79;;:::i;:::-;8353:117;8503:4;8495:6;8491:17;8479:29;;8557:3;8549:4;8541:6;8537:17;8527:8;8523:32;8520:41;8517:128;;;8564:79;;:::i;:::-;8517:128;8083:568;;;;;:::o;8674:::-;8747:8;8757:6;8807:3;8800:4;8792:6;8788:17;8784:27;8774:122;;8815:79;;:::i;:::-;8774:122;8928:6;8915:20;8905:30;;8958:18;8950:6;8947:30;8944:117;;;8980:79;;:::i;:::-;8944:117;9094:4;9086:6;9082:17;9070:29;;9148:3;9140:4;9132:6;9128:17;9118:8;9114:32;9111:41;9108:128;;;9155:79;;:::i;:::-;9108:128;8674:568;;;;;:::o;9248:1309::-;9406:6;9414;9422;9430;9438;9446;9495:2;9483:9;9474:7;9470:23;9466:32;9463:119;;;9501:79;;:::i;:::-;9463:119;9649:1;9638:9;9634:17;9621:31;9679:18;9671:6;9668:30;9665:117;;;9701:79;;:::i;:::-;9665:117;9814:80;9886:7;9877:6;9866:9;9862:22;9814:80;:::i;:::-;9796:98;;;;9592:312;9971:2;9960:9;9956:18;9943:32;10002:18;9994:6;9991:30;9988:117;;;10024:79;;:::i;:::-;9988:117;10137:80;10209:7;10200:6;10189:9;10185:22;10137:80;:::i;:::-;10119:98;;;;9914:313;10294:2;10283:9;10279:18;10266:32;10325:18;10317:6;10314:30;10311:117;;;10347:79;;:::i;:::-;10311:117;10460:80;10532:7;10523:6;10512:9;10508:22;10460:80;:::i;:::-;10442:98;;;;10237:313;9248:1309;;;;;;;;:::o;10563:180::-;10611:77;10608:1;10601:88;10708:4;10705:1;10698:15;10732:4;10729:1;10722:15;10749:281;10832:27;10854:4;10832:27;:::i;:::-;10824:6;10820:40;10962:6;10950:10;10947:22;10926:18;10914:10;10911:34;10908:62;10905:88;;;10973:18;;:::i;:::-;10905:88;11013:10;11009:2;11002:22;10792:238;10749:281;;:::o;11036:129::-;11070:6;11097:20;;:::i;:::-;11087:30;;11126:33;11154:4;11146:6;11126:33;:::i;:::-;11036:129;;;:::o;11171:311::-;11248:4;11338:18;11330:6;11327:30;11324:56;;;11360:18;;:::i;:::-;11324:56;11410:4;11402:6;11398:17;11390:25;;11470:4;11464;11460:15;11452:23;;11171:311;;;:::o;11505:710::-;11601:5;11626:81;11642:64;11699:6;11642:64;:::i;:::-;11626:81;:::i;:::-;11617:90;;11727:5;11756:6;11749:5;11742:21;11790:4;11783:5;11779:16;11772:23;;11843:4;11835:6;11831:17;11823:6;11819:30;11872:3;11864:6;11861:15;11858:122;;;11891:79;;:::i;:::-;11858:122;12006:6;11989:220;12023:6;12018:3;12015:15;11989:220;;;12098:3;12127:37;12160:3;12148:10;12127:37;:::i;:::-;12122:3;12115:50;12194:4;12189:3;12185:14;12178:21;;12065:144;12049:4;12044:3;12040:14;12033:21;;11989:220;;;11993:21;11607:608;;11505:710;;;;;:::o;12238:370::-;12309:5;12358:3;12351:4;12343:6;12339:17;12335:27;12325:122;;12366:79;;:::i;:::-;12325:122;12483:6;12470:20;12508:94;12598:3;12590:6;12583:4;12575:6;12571:17;12508:94;:::i;:::-;12499:103;;12315:293;12238:370;;;;:::o;12614:117::-;12723:1;12720;12713:12;12737:307;12798:4;12888:18;12880:6;12877:30;12874:56;;;12910:18;;:::i;:::-;12874:56;12948:29;12970:6;12948:29;:::i;:::-;12940:37;;13032:4;13026;13022:15;13014:23;;12737:307;;;:::o;13050:154::-;13134:6;13129:3;13124;13111:30;13196:1;13187:6;13182:3;13178:16;13171:27;13050:154;;;:::o;13210:410::-;13287:5;13312:65;13328:48;13369:6;13328:48;:::i;:::-;13312:65;:::i;:::-;13303:74;;13400:6;13393:5;13386:21;13438:4;13431:5;13427:16;13476:3;13467:6;13462:3;13458:16;13455:25;13452:112;;;13483:79;;:::i;:::-;13452:112;13573:41;13607:6;13602:3;13597;13573:41;:::i;:::-;13293:327;13210:410;;;;;:::o;13639:338::-;13694:5;13743:3;13736:4;13728:6;13724:17;13720:27;13710:122;;13751:79;;:::i;:::-;13710:122;13868:6;13855:20;13893:78;13967:3;13959:6;13952:4;13944:6;13940:17;13893:78;:::i;:::-;13884:87;;13700:277;13639:338;;;;:::o;13983:1509::-;14137:6;14145;14153;14161;14169;14218:3;14206:9;14197:7;14193:23;14189:33;14186:120;;;14225:79;;:::i;:::-;14186:120;14345:1;14370:53;14415:7;14406:6;14395:9;14391:22;14370:53;:::i;:::-;14360:63;;14316:117;14472:2;14498:53;14543:7;14534:6;14523:9;14519:22;14498:53;:::i;:::-;14488:63;;14443:118;14628:2;14617:9;14613:18;14600:32;14659:18;14651:6;14648:30;14645:117;;;14681:79;;:::i;:::-;14645:117;14786:78;14856:7;14847:6;14836:9;14832:22;14786:78;:::i;:::-;14776:88;;14571:303;14941:2;14930:9;14926:18;14913:32;14972:18;14964:6;14961:30;14958:117;;;14994:79;;:::i;:::-;14958:117;15099:78;15169:7;15160:6;15149:9;15145:22;15099:78;:::i;:::-;15089:88;;14884:303;15254:3;15243:9;15239:19;15226:33;15286:18;15278:6;15275:30;15272:117;;;15308:79;;:::i;:::-;15272:117;15413:62;15467:7;15458:6;15447:9;15443:22;15413:62;:::i;:::-;15403:72;;15197:288;13983:1509;;;;;;;;:::o;15498:329::-;15557:6;15606:2;15594:9;15585:7;15581:23;15577:32;15574:119;;;15612:79;;:::i;:::-;15574:119;15732:1;15757:53;15802:7;15793:6;15782:9;15778:22;15757:53;:::i;:::-;15747:63;;15703:117;15498:329;;;;:::o;15833:311::-;15910:4;16000:18;15992:6;15989:30;15986:56;;;16022:18;;:::i;:::-;15986:56;16072:4;16064:6;16060:17;16052:25;;16132:4;16126;16122:15;16114:23;;15833:311;;;:::o;16167:710::-;16263:5;16288:81;16304:64;16361:6;16304:64;:::i;:::-;16288:81;:::i;:::-;16279:90;;16389:5;16418:6;16411:5;16404:21;16452:4;16445:5;16441:16;16434:23;;16505:4;16497:6;16493:17;16485:6;16481:30;16534:3;16526:6;16523:15;16520:122;;;16553:79;;:::i;:::-;16520:122;16668:6;16651:220;16685:6;16680:3;16677:15;16651:220;;;16760:3;16789:37;16822:3;16810:10;16789:37;:::i;:::-;16784:3;16777:50;16856:4;16851:3;16847:14;16840:21;;16727:144;16711:4;16706:3;16702:14;16695:21;;16651:220;;;16655:21;16269:608;;16167:710;;;;;:::o;16900:370::-;16971:5;17020:3;17013:4;17005:6;17001:17;16997:27;16987:122;;17028:79;;:::i;:::-;16987:122;17145:6;17132:20;17170:94;17260:3;17252:6;17245:4;17237:6;17233:17;17170:94;:::i;:::-;17161:103;;16977:293;16900:370;;;;:::o;17276:894::-;17394:6;17402;17451:2;17439:9;17430:7;17426:23;17422:32;17419:119;;;17457:79;;:::i;:::-;17419:119;17605:1;17594:9;17590:17;17577:31;17635:18;17627:6;17624:30;17621:117;;;17657:79;;:::i;:::-;17621:117;17762:78;17832:7;17823:6;17812:9;17808:22;17762:78;:::i;:::-;17752:88;;17548:302;17917:2;17906:9;17902:18;17889:32;17948:18;17940:6;17937:30;17934:117;;;17970:79;;:::i;:::-;17934:117;18075:78;18145:7;18136:6;18125:9;18121:22;18075:78;:::i;:::-;18065:88;;17860:303;17276:894;;;;;:::o;18176:114::-;18243:6;18277:5;18271:12;18261:22;;18176:114;;;:::o;18296:184::-;18395:11;18429:6;18424:3;18417:19;18469:4;18464:3;18460:14;18445:29;;18296:184;;;;:::o;18486:132::-;18553:4;18576:3;18568:11;;18606:4;18601:3;18597:14;18589:22;;18486:132;;;:::o;18624:108::-;18701:24;18719:5;18701:24;:::i;:::-;18696:3;18689:37;18624:108;;:::o;18738:179::-;18807:10;18828:46;18870:3;18862:6;18828:46;:::i;:::-;18906:4;18901:3;18897:14;18883:28;;18738:179;;;;:::o;18923:113::-;18993:4;19025;19020:3;19016:14;19008:22;;18923:113;;;:::o;19072:732::-;19191:3;19220:54;19268:5;19220:54;:::i;:::-;19290:86;19369:6;19364:3;19290:86;:::i;:::-;19283:93;;19400:56;19450:5;19400:56;:::i;:::-;19479:7;19510:1;19495:284;19520:6;19517:1;19514:13;19495:284;;;19596:6;19590:13;19623:63;19682:3;19667:13;19623:63;:::i;:::-;19616:70;;19709:60;19762:6;19709:60;:::i;:::-;19699:70;;19555:224;19542:1;19539;19535:9;19530:14;;19495:284;;;19499:14;19795:3;19788:10;;19196:608;;;19072:732;;;;:::o;19810:373::-;19953:4;19991:2;19980:9;19976:18;19968:26;;20040:9;20034:4;20030:20;20026:1;20015:9;20011:17;20004:47;20068:108;20171:4;20162:6;20068:108;:::i;:::-;20060:116;;19810:373;;;;:::o;20189:529::-;20260:6;20268;20317:2;20305:9;20296:7;20292:23;20288:32;20285:119;;;20323:79;;:::i;:::-;20285:119;20471:1;20460:9;20456:17;20443:31;20501:18;20493:6;20490:30;20487:117;;;20523:79;;:::i;:::-;20487:117;20636:65;20693:7;20684:6;20673:9;20669:22;20636:65;:::i;:::-;20618:83;;;;20414:297;20189:529;;;;;:::o;20724:1039::-;20851:6;20859;20867;20916:2;20904:9;20895:7;20891:23;20887:32;20884:119;;;20922:79;;:::i;:::-;20884:119;21042:1;21067:53;21112:7;21103:6;21092:9;21088:22;21067:53;:::i;:::-;21057:63;;21013:117;21197:2;21186:9;21182:18;21169:32;21228:18;21220:6;21217:30;21214:117;;;21250:79;;:::i;:::-;21214:117;21355:78;21425:7;21416:6;21405:9;21401:22;21355:78;:::i;:::-;21345:88;;21140:303;21510:2;21499:9;21495:18;21482:32;21541:18;21533:6;21530:30;21527:117;;;21563:79;;:::i;:::-;21527:117;21668:78;21738:7;21729:6;21718:9;21714:22;21668:78;:::i;:::-;21658:88;;21453:303;20724:1039;;;;;:::o;21769:118::-;21856:24;21874:5;21856:24;:::i;:::-;21851:3;21844:37;21769:118;;:::o;21893:222::-;21986:4;22024:2;22013:9;22009:18;22001:26;;22037:71;22105:1;22094:9;22090:17;22081:6;22037:71;:::i;:::-;21893:222;;;;:::o;22121:1685::-;22315:6;22323;22331;22339;22347;22355;22363;22371;22420:3;22408:9;22399:7;22395:23;22391:33;22388:120;;;22427:79;;:::i;:::-;22388:120;22575:1;22564:9;22560:17;22547:31;22605:18;22597:6;22594:30;22591:117;;;22627:79;;:::i;:::-;22591:117;22740:80;22812:7;22803:6;22792:9;22788:22;22740:80;:::i;:::-;22722:98;;;;22518:312;22897:2;22886:9;22882:18;22869:32;22928:18;22920:6;22917:30;22914:117;;;22950:79;;:::i;:::-;22914:117;23063:80;23135:7;23126:6;23115:9;23111:22;23063:80;:::i;:::-;23045:98;;;;22840:313;23220:2;23209:9;23205:18;23192:32;23251:18;23243:6;23240:30;23237:117;;;23273:79;;:::i;:::-;23237:117;23386:80;23458:7;23449:6;23438:9;23434:22;23386:80;:::i;:::-;23368:98;;;;23163:313;23543:2;23532:9;23528:18;23515:32;23574:18;23566:6;23563:30;23560:117;;;23596:79;;:::i;:::-;23560:117;23709:80;23781:7;23772:6;23761:9;23757:22;23709:80;:::i;:::-;23691:98;;;;23486:313;22121:1685;;;;;;;;;;;:::o;23812:704::-;23907:6;23915;23923;23972:2;23960:9;23951:7;23947:23;23943:32;23940:119;;;23978:79;;:::i;:::-;23940:119;24126:1;24115:9;24111:17;24098:31;24156:18;24148:6;24145:30;24142:117;;;24178:79;;:::i;:::-;24142:117;24291:80;24363:7;24354:6;24343:9;24339:22;24291:80;:::i;:::-;24273:98;;;;24069:312;24420:2;24446:53;24491:7;24482:6;24471:9;24467:22;24446:53;:::i;:::-;24436:63;;24391:118;23812:704;;;;;:::o;24522:474::-;24590:6;24598;24647:2;24635:9;24626:7;24622:23;24618:32;24615:119;;;24653:79;;:::i;:::-;24615:119;24773:1;24798:53;24843:7;24834:6;24823:9;24819:22;24798:53;:::i;:::-;24788:63;;24744:117;24900:2;24926:53;24971:7;24962:6;24951:9;24947:22;24926:53;:::i;:::-;24916:63;;24871:118;24522:474;;;;;:::o;25002:::-;25070:6;25078;25127:2;25115:9;25106:7;25102:23;25098:32;25095:119;;;25133:79;;:::i;:::-;25095:119;25253:1;25278:53;25323:7;25314:6;25303:9;25299:22;25278:53;:::i;:::-;25268:63;;25224:117;25380:2;25406:53;25451:7;25442:6;25431:9;25427:22;25406:53;:::i;:::-;25396:63;;25351:118;25002:474;;;;;:::o;25482:1089::-;25586:6;25594;25602;25610;25618;25667:3;25655:9;25646:7;25642:23;25638:33;25635:120;;;25674:79;;:::i;:::-;25635:120;25794:1;25819:53;25864:7;25855:6;25844:9;25840:22;25819:53;:::i;:::-;25809:63;;25765:117;25921:2;25947:53;25992:7;25983:6;25972:9;25968:22;25947:53;:::i;:::-;25937:63;;25892:118;26049:2;26075:53;26120:7;26111:6;26100:9;26096:22;26075:53;:::i;:::-;26065:63;;26020:118;26177:2;26203:53;26248:7;26239:6;26228:9;26224:22;26203:53;:::i;:::-;26193:63;;26148:118;26333:3;26322:9;26318:19;26305:33;26365:18;26357:6;26354:30;26351:117;;;26387:79;;:::i;:::-;26351:117;26492:62;26546:7;26537:6;26526:9;26522:22;26492:62;:::i;:::-;26482:72;;26276:288;25482:1089;;;;;;;;:::o;26577:619::-;26654:6;26662;26670;26719:2;26707:9;26698:7;26694:23;26690:32;26687:119;;;26725:79;;:::i;:::-;26687:119;26845:1;26870:53;26915:7;26906:6;26895:9;26891:22;26870:53;:::i;:::-;26860:63;;26816:117;26972:2;26998:53;27043:7;27034:6;27023:9;27019:22;26998:53;:::i;:::-;26988:63;;26943:118;27100:2;27126:53;27171:7;27162:6;27151:9;27147:22;27126:53;:::i;:::-;27116:63;;27071:118;26577:619;;;;;:::o;27202:230::-;27342:34;27338:1;27330:6;27326:14;27319:58;27411:13;27406:2;27398:6;27394:15;27387:38;27202:230;:::o;27438:366::-;27580:3;27601:67;27665:2;27660:3;27601:67;:::i;:::-;27594:74;;27677:93;27766:3;27677:93;:::i;:::-;27795:2;27790:3;27786:12;27779:19;;27438:366;;;:::o;27810:419::-;27976:4;28014:2;28003:9;27999:18;27991:26;;28063:9;28057:4;28053:20;28049:1;28038:9;28034:17;28027:47;28091:131;28217:4;28091:131;:::i;:::-;28083:139;;27810:419;;;:::o;28235:182::-;28375:34;28371:1;28363:6;28359:14;28352:58;28235:182;:::o;28423:366::-;28565:3;28586:67;28650:2;28645:3;28586:67;:::i;:::-;28579:74;;28662:93;28751:3;28662:93;:::i;:::-;28780:2;28775:3;28771:12;28764:19;;28423:366;;;:::o;28795:419::-;28961:4;28999:2;28988:9;28984:18;28976:26;;29048:9;29042:4;29038:20;29034:1;29023:9;29019:17;29012:47;29076:131;29202:4;29076:131;:::i;:::-;29068:139;;28795:419;;;:::o;29220:180::-;29268:77;29265:1;29258:88;29365:4;29362:1;29355:15;29389:4;29386:1;29379:15;29406:320;29450:6;29487:1;29481:4;29477:12;29467:22;;29534:1;29528:4;29524:12;29555:18;29545:81;;29611:4;29603:6;29599:17;29589:27;;29545:81;29673:2;29665:6;29662:14;29642:18;29639:38;29636:84;;;29692:18;;:::i;:::-;29636:84;29457:269;29406:320;;;:::o;29732:161::-;29872:13;29868:1;29860:6;29856:14;29849:37;29732:161;:::o;29899:366::-;30041:3;30062:67;30126:2;30121:3;30062:67;:::i;:::-;30055:74;;30138:93;30227:3;30138:93;:::i;:::-;30256:2;30251:3;30247:12;30240:19;;29899:366;;;:::o;30271:419::-;30437:4;30475:2;30464:9;30460:18;30452:26;;30524:9;30518:4;30514:20;30510:1;30499:9;30495:17;30488:47;30552:131;30678:4;30552:131;:::i;:::-;30544:139;;30271:419;;;:::o;30696:167::-;30836:19;30832:1;30824:6;30820:14;30813:43;30696:167;:::o;30869:366::-;31011:3;31032:67;31096:2;31091:3;31032:67;:::i;:::-;31025:74;;31108:93;31197:3;31108:93;:::i;:::-;31226:2;31221:3;31217:12;31210:19;;30869:366;;;:::o;31241:419::-;31407:4;31445:2;31434:9;31430:18;31422:26;;31494:9;31488:4;31484:20;31480:1;31469:9;31465:17;31458:47;31522:131;31648:4;31522:131;:::i;:::-;31514:139;;31241:419;;;:::o;31666:180::-;31714:77;31711:1;31704:88;31811:4;31808:1;31801:15;31835:4;31832:1;31825:15;31852:180;31900:77;31897:1;31890:88;31997:4;31994:1;31987:15;32021:4;32018:1;32011:15;32038:233;32077:3;32100:24;32118:5;32100:24;:::i;:::-;32091:33;;32146:66;32139:5;32136:77;32133:103;;;32216:18;;:::i;:::-;32133:103;32263:1;32256:5;32252:13;32245:20;;32038:233;;;:::o;32277:237::-;32417:34;32413:1;32405:6;32401:14;32394:58;32486:20;32481:2;32473:6;32469:15;32462:45;32277:237;:::o;32520:366::-;32662:3;32683:67;32747:2;32742:3;32683:67;:::i;:::-;32676:74;;32759:93;32848:3;32759:93;:::i;:::-;32877:2;32872:3;32868:12;32861:19;;32520:366;;;:::o;32892:419::-;33058:4;33096:2;33085:9;33081:18;33073:26;;33145:9;33139:4;33135:20;33131:1;33120:9;33116:17;33109:47;33173:131;33299:4;33173:131;:::i;:::-;33165:139;;32892:419;;;:::o;33317:228::-;33457:34;33453:1;33445:6;33441:14;33434:58;33526:11;33521:2;33513:6;33509:15;33502:36;33317:228;:::o;33551:366::-;33693:3;33714:67;33778:2;33773:3;33714:67;:::i;:::-;33707:74;;33790:93;33879:3;33790:93;:::i;:::-;33908:2;33903:3;33899:12;33892:19;;33551:366;;;:::o;33923:419::-;34089:4;34127:2;34116:9;34112:18;34104:26;;34176:9;34170:4;34166:20;34162:1;34151:9;34147:17;34140:47;34204:131;34330:4;34204:131;:::i;:::-;34196:139;;33923:419;;;:::o;34348:157::-;34488:9;34484:1;34476:6;34472:14;34465:33;34348:157;:::o;34511:365::-;34653:3;34674:66;34738:1;34733:3;34674:66;:::i;:::-;34667:73;;34749:93;34838:3;34749:93;:::i;:::-;34867:2;34862:3;34858:12;34851:19;;34511:365;;;:::o;34882:419::-;35048:4;35086:2;35075:9;35071:18;35063:26;;35135:9;35129:4;35125:20;35121:1;35110:9;35106:17;35099:47;35163:131;35289:4;35163:131;:::i;:::-;35155:139;;34882:419;;;:::o;35307:228::-;35447:34;35443:1;35435:6;35431:14;35424:58;35516:11;35511:2;35503:6;35499:15;35492:36;35307:228;:::o;35541:366::-;35683:3;35704:67;35768:2;35763:3;35704:67;:::i;:::-;35697:74;;35780:93;35869:3;35780:93;:::i;:::-;35898:2;35893:3;35889:12;35882:19;;35541:366;;;:::o;35913:419::-;36079:4;36117:2;36106:9;36102:18;36094:26;;36166:9;36160:4;36156:20;36152:1;36141:9;36137:17;36130:47;36194:131;36320:4;36194:131;:::i;:::-;36186:139;;35913:419;;;:::o;36338:348::-;36378:7;36401:20;36419:1;36401:20;:::i;:::-;36396:25;;36435:20;36453:1;36435:20;:::i;:::-;36430:25;;36623:1;36555:66;36551:74;36548:1;36545:81;36540:1;36533:9;36526:17;36522:105;36519:131;;;36630:18;;:::i;:::-;36519:131;36678:1;36675;36671:9;36660:20;;36338:348;;;;:::o;36692:165::-;36832:17;36828:1;36820:6;36816:14;36809:41;36692:165;:::o;36863:366::-;37005:3;37026:67;37090:2;37085:3;37026:67;:::i;:::-;37019:74;;37102:93;37191:3;37102:93;:::i;:::-;37220:2;37215:3;37211:12;37204:19;;36863:366;;;:::o;37235:419::-;37401:4;37439:2;37428:9;37424:18;37416:26;;37488:9;37482:4;37478:20;37474:1;37463:9;37459:17;37452:47;37516:131;37642:4;37516:131;:::i;:::-;37508:139;;37235:419;;;:::o;37660:171::-;37800:23;37796:1;37788:6;37784:14;37777:47;37660:171;:::o;37837:366::-;37979:3;38000:67;38064:2;38059:3;38000:67;:::i;:::-;37993:74;;38076:93;38165:3;38076:93;:::i;:::-;38194:2;38189:3;38185:12;38178:19;;37837:366;;;:::o;38209:419::-;38375:4;38413:2;38402:9;38398:18;38390:26;;38462:9;38456:4;38452:20;38448:1;38437:9;38433:17;38426:47;38490:131;38616:4;38490:131;:::i;:::-;38482:139;;38209:419;;;:::o;38634:162::-;38774:14;38770:1;38762:6;38758:14;38751:38;38634:162;:::o;38802:366::-;38944:3;38965:67;39029:2;39024:3;38965:67;:::i;:::-;38958:74;;39041:93;39130:3;39041:93;:::i;:::-;39159:2;39154:3;39150:12;39143:19;;38802:366;;;:::o;39174:419::-;39340:4;39378:2;39367:9;39363:18;39355:26;;39427:9;39421:4;39417:20;39413:1;39402:9;39398:17;39391:47;39455:131;39581:4;39455:131;:::i;:::-;39447:139;;39174:419;;;:::o;39599:305::-;39639:3;39658:20;39676:1;39658:20;:::i;:::-;39653:25;;39692:20;39710:1;39692:20;:::i;:::-;39687:25;;39846:1;39778:66;39774:74;39771:1;39768:81;39765:107;;;39852:18;;:::i;:::-;39765:107;39896:1;39893;39889:9;39882:16;;39599:305;;;;:::o;39910:165::-;40050:17;40046:1;40038:6;40034:14;40027:41;39910:165;:::o;40081:366::-;40223:3;40244:67;40308:2;40303:3;40244:67;:::i;:::-;40237:74;;40320:93;40409:3;40320:93;:::i;:::-;40438:2;40433:3;40429:12;40422:19;;40081:366;;;:::o;40453:419::-;40619:4;40657:2;40646:9;40642:18;40634:26;;40706:9;40700:4;40696:20;40692:1;40681:9;40677:17;40670:47;40734:131;40860:4;40734:131;:::i;:::-;40726:139;;40453:419;;;:::o;40878:225::-;41018:34;41014:1;41006:6;41002:14;40995:58;41087:8;41082:2;41074:6;41070:15;41063:33;40878:225;:::o;41109:366::-;41251:3;41272:67;41336:2;41331:3;41272:67;:::i;:::-;41265:74;;41348:93;41437:3;41348:93;:::i;:::-;41466:2;41461:3;41457:12;41450:19;;41109:366;;;:::o;41481:419::-;41647:4;41685:2;41674:9;41670:18;41662:26;;41734:9;41728:4;41724:20;41720:1;41709:9;41705:17;41698:47;41762:131;41888:4;41762:131;:::i;:::-;41754:139;;41481:419;;;:::o;41906:220::-;42046:34;42042:1;42034:6;42030:14;42023:58;42115:3;42110:2;42102:6;42098:15;42091:28;41906:220;:::o;42132:366::-;42274:3;42295:67;42359:2;42354:3;42295:67;:::i;:::-;42288:74;;42371:93;42460:3;42371:93;:::i;:::-;42489:2;42484:3;42480:12;42473:19;;42132:366;;;:::o;42504:419::-;42670:4;42708:2;42697:9;42693:18;42685:26;;42757:9;42751:4;42747:20;42743:1;42732:9;42728:17;42721:47;42785:131;42911:4;42785:131;:::i;:::-;42777:139;;42504:419;;;:::o;42929:332::-;43050:4;43088:2;43077:9;43073:18;43065:26;;43101:71;43169:1;43158:9;43154:17;43145:6;43101:71;:::i;:::-;43182:72;43250:2;43239:9;43235:18;43226:6;43182:72;:::i;:::-;42929:332;;;;;:::o;43267:227::-;43407:34;43403:1;43395:6;43391:14;43384:58;43476:10;43471:2;43463:6;43459:15;43452:35;43267:227;:::o;43500:366::-;43642:3;43663:67;43727:2;43722:3;43663:67;:::i;:::-;43656:74;;43739:93;43828:3;43739:93;:::i;:::-;43857:2;43852:3;43848:12;43841:19;;43500:366;;;:::o;43872:419::-;44038:4;44076:2;44065:9;44061:18;44053:26;;44125:9;44119:4;44115:20;44111:1;44100:9;44096:17;44089:47;44153:131;44279:4;44153:131;:::i;:::-;44145:139;;43872:419;;;:::o;44297:224::-;44437:34;44433:1;44425:6;44421:14;44414:58;44506:7;44501:2;44493:6;44489:15;44482:32;44297:224;:::o;44527:366::-;44669:3;44690:67;44754:2;44749:3;44690:67;:::i;:::-;44683:74;;44766:93;44855:3;44766:93;:::i;:::-;44884:2;44879:3;44875:12;44868:19;;44527:366;;;:::o;44899:419::-;45065:4;45103:2;45092:9;45088:18;45080:26;;45152:9;45146:4;45142:20;45138:1;45127:9;45123:17;45116:47;45180:131;45306:4;45180:131;:::i;:::-;45172:139;;44899:419;;;:::o;45324:229::-;45464:34;45460:1;45452:6;45448:14;45441:58;45533:12;45528:2;45520:6;45516:15;45509:37;45324:229;:::o;45559:366::-;45701:3;45722:67;45786:2;45781:3;45722:67;:::i;:::-;45715:74;;45798:93;45887:3;45798:93;:::i;:::-;45916:2;45911:3;45907:12;45900:19;;45559:366;;;:::o;45931:419::-;46097:4;46135:2;46124:9;46120:18;46112:26;;46184:9;46178:4;46174:20;46170:1;46159:9;46155:17;46148:47;46212:131;46338:4;46212:131;:::i;:::-;46204:139;;45931:419;;;:::o;46356:634::-;46577:4;46615:2;46604:9;46600:18;46592:26;;46664:9;46658:4;46654:20;46650:1;46639:9;46635:17;46628:47;46692:108;46795:4;46786:6;46692:108;:::i;:::-;46684:116;;46847:9;46841:4;46837:20;46832:2;46821:9;46817:18;46810:48;46875:108;46978:4;46969:6;46875:108;:::i;:::-;46867:116;;46356:634;;;;;:::o;46996:222::-;47136:34;47132:1;47124:6;47120:14;47113:58;47205:5;47200:2;47192:6;47188:15;47181:30;46996:222;:::o;47224:366::-;47366:3;47387:67;47451:2;47446:3;47387:67;:::i;:::-;47380:74;;47463:93;47552:3;47463:93;:::i;:::-;47581:2;47576:3;47572:12;47565:19;;47224:366;;;:::o;47596:419::-;47762:4;47800:2;47789:9;47785:18;47777:26;;47849:9;47843:4;47839:20;47835:1;47824:9;47820:17;47813:47;47877:131;48003:4;47877:131;:::i;:::-;47869:139;;47596:419;;;:::o;48021:223::-;48161:34;48157:1;48149:6;48145:14;48138:58;48230:6;48225:2;48217:6;48213:15;48206:31;48021:223;:::o;48250:366::-;48392:3;48413:67;48477:2;48472:3;48413:67;:::i;:::-;48406:74;;48489:93;48578:3;48489:93;:::i;:::-;48607:2;48602:3;48598:12;48591:19;;48250:366;;;:::o;48622:419::-;48788:4;48826:2;48815:9;48811:18;48803:26;;48875:9;48869:4;48865:20;48861:1;48850:9;48846:17;48839:47;48903:131;49029:4;48903:131;:::i;:::-;48895:139;;48622:419;;;:::o;49047:228::-;49187:34;49183:1;49175:6;49171:14;49164:58;49256:11;49251:2;49243:6;49239:15;49232:36;49047:228;:::o;49281:366::-;49423:3;49444:67;49508:2;49503:3;49444:67;:::i;:::-;49437:74;;49520:93;49609:3;49520:93;:::i;:::-;49638:2;49633:3;49629:12;49622:19;;49281:366;;;:::o;49653:419::-;49819:4;49857:2;49846:9;49842:18;49834:26;;49906:9;49900:4;49896:20;49892:1;49881:9;49877:17;49870:47;49934:131;50060:4;49934:131;:::i;:::-;49926:139;;49653:419;;;:::o;50078:98::-;50129:6;50163:5;50157:12;50147:22;;50078:98;;;:::o;50182:168::-;50265:11;50299:6;50294:3;50287:19;50339:4;50334:3;50330:14;50315:29;;50182:168;;;;:::o;50356:360::-;50442:3;50470:38;50502:5;50470:38;:::i;:::-;50524:70;50587:6;50582:3;50524:70;:::i;:::-;50517:77;;50603:52;50648:6;50643:3;50636:4;50629:5;50625:16;50603:52;:::i;:::-;50680:29;50702:6;50680:29;:::i;:::-;50675:3;50671:39;50664:46;;50446:270;50356:360;;;;:::o;50722:751::-;50945:4;50983:3;50972:9;50968:19;50960:27;;50997:71;51065:1;51054:9;51050:17;51041:6;50997:71;:::i;:::-;51078:72;51146:2;51135:9;51131:18;51122:6;51078:72;:::i;:::-;51160;51228:2;51217:9;51213:18;51204:6;51160:72;:::i;:::-;51242;51310:2;51299:9;51295:18;51286:6;51242:72;:::i;:::-;51362:9;51356:4;51352:20;51346:3;51335:9;51331:19;51324:49;51390:76;51461:4;51452:6;51390:76;:::i;:::-;51382:84;;50722:751;;;;;;;;:::o;51479:141::-;51535:5;51566:6;51560:13;51551:22;;51582:32;51608:5;51582:32;:::i;:::-;51479:141;;;;:::o;51626:349::-;51695:6;51744:2;51732:9;51723:7;51719:23;51715:32;51712:119;;;51750:79;;:::i;:::-;51712:119;51870:1;51895:63;51950:7;51941:6;51930:9;51926:22;51895:63;:::i;:::-;51885:73;;51841:127;51626:349;;;;:::o;51981:106::-;52025:8;52074:5;52069:3;52065:15;52044:36;;51981:106;;;:::o;52093:183::-;52128:3;52166:1;52148:16;52145:23;52142:128;;;52204:1;52201;52198;52183:23;52226:34;52257:1;52251:8;52226:34;:::i;:::-;52219:41;;52142:128;52093:183;:::o;52282:711::-;52321:3;52359:4;52341:16;52338:26;52335:39;;;52367:5;;52335:39;52396:20;;:::i;:::-;52471:1;52453:16;52449:24;52446:1;52440:4;52425:49;52504:4;52498:11;52603:16;52596:4;52588:6;52584:17;52581:39;52548:18;52540:6;52537:30;52521:113;52518:146;;;52649:5;;;;52518:146;52695:6;52689:4;52685:17;52731:3;52725:10;52758:18;52750:6;52747:30;52744:43;;;52780:5;;;;;;52744:43;52828:6;52821:4;52816:3;52812:14;52808:27;52887:1;52869:16;52865:24;52859:4;52855:35;52850:3;52847:44;52844:57;;;52894:5;;;;;;;52844:57;52911;52959:6;52953:4;52949:17;52941:6;52937:30;52931:4;52911:57;:::i;:::-;52984:3;52977:10;;52325:668;;;;;52282:711;;:::o;52999:239::-;53139:34;53135:1;53127:6;53123:14;53116:58;53208:22;53203:2;53195:6;53191:15;53184:47;52999:239;:::o;53244:366::-;53386:3;53407:67;53471:2;53466:3;53407:67;:::i;:::-;53400:74;;53483:93;53572:3;53483:93;:::i;:::-;53601:2;53596:3;53592:12;53585:19;;53244:366;;;:::o;53616:419::-;53782:4;53820:2;53809:9;53805:18;53797:26;;53869:9;53863:4;53859:20;53855:1;53844:9;53840:17;53833:47;53897:131;54023:4;53897:131;:::i;:::-;53889:139;;53616:419;;;:::o;54041:227::-;54181:34;54177:1;54169:6;54165:14;54158:58;54250:10;54245:2;54237:6;54233:15;54226:35;54041:227;:::o;54274:366::-;54416:3;54437:67;54501:2;54496:3;54437:67;:::i;:::-;54430:74;;54513:93;54602:3;54513:93;:::i;:::-;54631:2;54626:3;54622:12;54615:19;;54274:366;;;:::o;54646:419::-;54812:4;54850:2;54839:9;54835:18;54827:26;;54899:9;54893:4;54889:20;54885:1;54874:9;54870:17;54863:47;54927:131;55053:4;54927:131;:::i;:::-;54919:139;;54646:419;;;:::o;55071:1053::-;55394:4;55432:3;55421:9;55417:19;55409:27;;55446:71;55514:1;55503:9;55499:17;55490:6;55446:71;:::i;:::-;55527:72;55595:2;55584:9;55580:18;55571:6;55527:72;:::i;:::-;55646:9;55640:4;55636:20;55631:2;55620:9;55616:18;55609:48;55674:108;55777:4;55768:6;55674:108;:::i;:::-;55666:116;;55829:9;55823:4;55819:20;55814:2;55803:9;55799:18;55792:48;55857:108;55960:4;55951:6;55857:108;:::i;:::-;55849:116;;56013:9;56007:4;56003:20;55997:3;55986:9;55982:19;55975:49;56041:76;56112:4;56103:6;56041:76;:::i;:::-;56033:84;;55071:1053;;;;;;;;:::o

Swarm Source

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