ETH Price: $3,489.36 (+7.49%)
Gas: 7 Gwei

Token

IronApe (IronApe)
 

Overview

Max Total Supply

19,980 IronApe

Holders

43

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xf7f08575740a57bbccacd4f236425ac798e1a820
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:
IronApe

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-14
*/

// SPDX-License-Identifier: MIT

/**
NobleBored NFT
*/



pragma solidity ^0.8.0;

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;


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

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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;







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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

        return array;
    }
}

pragma solidity ^0.8.0;

contract IronApe is ERC1155, Ownable {
    
  string public name;
  string public symbol;

  mapping(uint => string) public tokenURI;

  constructor() ERC1155("") {
    name = "IronApe";
    symbol = "IronApe";
  }

  function mint(address _to, uint _id, uint _amount) external onlyOwner {
    _mint(_to, _id, _amount, "");
  }

  function mintBatch(address _to, uint[] memory _ids, uint[] memory _amounts) external onlyOwner {
    _mintBatch(_to, _ids, _amounts, "");
  }

  function burn(uint _id, uint _amount) external {
    _burn(msg.sender, _id, _amount);
  }

  function burnBatch(uint[] memory _ids, uint[] memory _amounts) external {
    _burnBatch(msg.sender, _ids, _amounts);
  }

  function burnForMint(address _from, uint[] memory _burnIds, uint[] memory _burnAmounts, uint[] memory _mintIds, uint[] memory _mintAmounts) external onlyOwner {
    _burnBatch(_from, _burnIds, _burnAmounts);
    _mintBatch(_from, _mintIds, _mintAmounts, "");
  }

  function setURI(uint _id, string memory _uri) external onlyOwner {
    tokenURI[_id] = _uri;
    emit URI(_uri, _id);
  }

  function uri(uint _id) public override view returns (string memory) {
    return tokenURI[_id];
  }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256[]","name":"_burnIds","type":"uint256[]"},{"internalType":"uint256[]","name":"_burnAmounts","type":"uint256[]"},{"internalType":"uint256[]","name":"_mintIds","type":"uint256[]"},{"internalType":"uint256[]","name":"_mintAmounts","type":"uint256[]"}],"name":"burnForMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051806020016040528060008152506200003381620000f660201b60201c565b5062000054620000486200011260201b60201c565b6200011a60201b60201c565b6040518060400160405280600781526020017f49726f6e4170650000000000000000000000000000000000000000000000000081525060049080519060200190620000a1929190620001e0565b506040518060400160405280600781526020017f49726f6e4170650000000000000000000000000000000000000000000000000081525060059080519060200190620000ef929190620001e0565b50620002f5565b80600290805190602001906200010e929190620001e0565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001ee9062000290565b90600052602060002090601f0160209004810192826200021257600085556200025e565b82601f106200022d57805160ff19168380011785556200025e565b828001600101855582156200025e579182015b828111156200025d57825182559160200191906001019062000240565b5b5090506200026d919062000271565b5090565b5b808211156200028c57600081600090555060010162000272565b5090565b60006002820490506001821680620002a957607f821691505b60208210811415620002c057620002bf620002c6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613e6580620003056000396000f3fe608060405234801561001057600080fd5b506004361061012b5760003560e01c8063862440e2116100ad578063c87b56dd11610071578063c87b56dd14610318578063d81d0a1514610348578063e985e9c514610364578063f242432a14610394578063f2fde38b146103b05761012b565b8063862440e2146102885780638da5cb5b146102a457806395d89b41146102c2578063a22cb465146102e0578063b390c0ab146102fc5761012b565b80632eb2c2d6116100f45780632eb2c2d6146101fa5780634e1273f414610216578063510f410414610246578063715018a61461026257806383ca4b6f1461026c5761012b565b8062fdd58e1461013057806301ffc9a71461016057806306fdde03146101905780630e89341c146101ae578063156e29f6146101de575b600080fd5b61014a60048036038101906101459190612b37565b6103cc565b6040516101579190613461565b60405180910390f35b61017a60048036038101906101759190612cba565b610495565b6040516101879190613244565b60405180910390f35b610198610577565b6040516101a5919061325f565b60405180910390f35b6101c860048036038101906101c39190612d14565b610605565b6040516101d5919061325f565b60405180910390f35b6101f860048036038101906101f39190612b77565b6106aa565b005b610214600480360381019061020f919061281b565b610746565b005b610230600480360381019061022b9190612bca565b6107e7565b60405161023d91906131eb565b60405180910390f35b610260600480360381019061025b9190612a0c565b610900565b005b61026a6109a9565b005b61028660048036038101906102819190612c42565b610a31565b005b6102a2600480360381019061029d9190612d41565b610a40565b005b6102ac610b20565b6040516102b9919061310e565b60405180910390f35b6102ca610b4a565b6040516102d7919061325f565b60405180910390f35b6102fa60048036038101906102f59190612af7565b610bd8565b005b61031660048036038101906103119190612d9d565b610bee565b005b610332600480360381019061032d9190612d14565b610bfd565b60405161033f919061325f565b60405180910390f35b610362600480360381019061035d9190612981565b610c9d565b005b61037e600480360381019061037991906127db565b610d39565b60405161038b9190613244565b60405180910390f35b6103ae60048036038101906103a991906128ea565b610dcd565b005b6103ca60048036038101906103c591906127ae565b610e6e565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561043d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610434906132c1565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061056057507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610570575061056f82610f66565b5b9050919050565b6004805461058490613701565b80601f01602080910402602001604051908101604052809291908181526020018280546105b090613701565b80156105fd5780601f106105d2576101008083540402835291602001916105fd565b820191906000526020600020905b8154815290600101906020018083116105e057829003601f168201915b505050505081565b606060066000838152602001908152602001600020805461062590613701565b80601f016020809104026020016040519081016040528092919081815260200182805461065190613701565b801561069e5780601f106106735761010080835404028352916020019161069e565b820191906000526020600020905b81548152906001019060200180831161068157829003601f168201915b50505050509050919050565b6106b2610fd0565b73ffffffffffffffffffffffffffffffffffffffff166106d0610b20565b73ffffffffffffffffffffffffffffffffffffffff1614610726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071d906133c1565b60405180910390fd5b61074183838360405180602001604052806000815250610fd8565b505050565b61074e610fd0565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061079457506107938561078e610fd0565b610d39565b5b6107d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ca90613361565b60405180910390fd5b6107e0858585858561116e565b5050505050565b6060815183511461082d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082490613401565b60405180910390fd5b6000835167ffffffffffffffff81111561084a5761084961383a565b5b6040519080825280602002602001820160405280156108785781602001602082028036833780820191505090505b50905060005b84518110156108f5576108c585828151811061089d5761089c61380b565b5b60200260200101518583815181106108b8576108b761380b565b5b60200260200101516103cc565b8282815181106108d8576108d761380b565b5b602002602001018181525050806108ee90613764565b905061087e565b508091505092915050565b610908610fd0565b73ffffffffffffffffffffffffffffffffffffffff16610926610b20565b73ffffffffffffffffffffffffffffffffffffffff161461097c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610973906133c1565b60405180910390fd5b610987858585611482565b6109a285838360405180602001604052806000815250611733565b5050505050565b6109b1610fd0565b73ffffffffffffffffffffffffffffffffffffffff166109cf610b20565b73ffffffffffffffffffffffffffffffffffffffff1614610a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1c906133c1565b60405180910390fd5b610a2f6000611951565b565b610a3c338383611482565b5050565b610a48610fd0565b73ffffffffffffffffffffffffffffffffffffffff16610a66610b20565b73ffffffffffffffffffffffffffffffffffffffff1614610abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab3906133c1565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190610ae3929190612486565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b82604051610b14919061325f565b60405180910390a25050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60058054610b5790613701565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8390613701565b8015610bd05780601f10610ba557610100808354040283529160200191610bd0565b820191906000526020600020905b815481529060010190602001808311610bb357829003601f168201915b505050505081565b610bea610be3610fd0565b8383611a17565b5050565b610bf9338383611b84565b5050565b60066020528060005260406000206000915090508054610c1c90613701565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4890613701565b8015610c955780601f10610c6a57610100808354040283529160200191610c95565b820191906000526020600020905b815481529060010190602001808311610c7857829003601f168201915b505050505081565b610ca5610fd0565b73ffffffffffffffffffffffffffffffffffffffff16610cc3610b20565b73ffffffffffffffffffffffffffffffffffffffff1614610d19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d10906133c1565b60405180910390fd5b610d3483838360405180602001604052806000815250611733565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610dd5610fd0565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610e1b5750610e1a85610e15610fd0565b610d39565b5b610e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5190613321565b60405180910390fd5b610e678585858585611da1565b5050505050565b610e76610fd0565b73ffffffffffffffffffffffffffffffffffffffff16610e94610b20565b73ffffffffffffffffffffffffffffffffffffffff1614610eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee1906133c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f51906132e1565b60405180910390fd5b610f6381611951565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f90613441565b60405180910390fd5b6000611052610fd0565b90506110738160008761106488612023565b61106d88612023565b8761209d565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110d291906135f5565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161115092919061347c565b60405180910390a4611167816000878787876120a5565b5050505050565b81518351146111b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a990613421565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121990613341565b60405180910390fd5b600061122c610fd0565b905061123c81878787878761209d565b60005b84518110156113ed57600085828151811061125d5761125c61380b565b5b60200260200101519050600085838151811061127c5761127b61380b565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561131d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611314906133a1565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113d291906135f5565b92505081905550505050806113e690613764565b905061123f565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161146492919061320d565b60405180910390a461147a81878787878761228c565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e990613381565b60405180910390fd5b8051825114611536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152d90613421565b60405180910390fd5b6000611540610fd0565b90506115608185600086866040518060200160405280600081525061209d565b60005b83518110156116ad5760008482815181106115815761158061380b565b5b6020026020010151905060008483815181106115a05761159f61380b565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163890613301565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505080806116a590613764565b915050611563565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb868660405161172592919061320d565b60405180910390a450505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a90613441565b60405180910390fd5b81518351146117e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117de90613421565b60405180910390fd5b60006117f1610fd0565b90506118028160008787878761209d565b60005b84518110156118bb578381815181106118215761182061380b565b5b602002602001015160008087848151811061183f5761183e61380b565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118a191906135f5565b9250508190555080806118b390613764565b915050611805565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161193392919061320d565b60405180910390a461194a8160008787878761228c565b5050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7d906133e1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b779190613244565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611beb90613381565b60405180910390fd5b6000611bfe610fd0565b9050611c2e81856000611c1087612023565b611c1987612023565b6040518060200160405280600081525061209d565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbc90613301565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611d9292919061347c565b60405180910390a45050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0890613341565b60405180910390fd5b6000611e1b610fd0565b9050611e3b818787611e2c88612023565b611e3588612023565b8761209d565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec9906133a1565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f8791906135f5565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62888860405161200492919061347c565b60405180910390a461201a8288888888886120a5565b50505050505050565b60606000600167ffffffffffffffff8111156120425761204161383a565b5b6040519080825280602002602001820160405280156120705781602001602082028036833780820191505090505b50905082816000815181106120885761208761380b565b5b60200260200101818152505080915050919050565b505050505050565b6120c48473ffffffffffffffffffffffffffffffffffffffff16612473565b15612284578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161210a959493929190613191565b602060405180830381600087803b15801561212457600080fd5b505af192505050801561215557506040513d601f19601f820116820180604052508101906121529190612ce7565b60015b6121fb57612161613869565b806308c379a014156121be5750612176613d3d565b8061218157506121c0565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b5919061325f565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f290613281565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612282576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612279906132a1565b60405180910390fd5b505b505050505050565b6122ab8473ffffffffffffffffffffffffffffffffffffffff16612473565b1561246b578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016122f1959493929190613129565b602060405180830381600087803b15801561230b57600080fd5b505af192505050801561233c57506040513d601f19601f820116820180604052508101906123399190612ce7565b60015b6123e257612348613869565b806308c379a014156123a5575061235d613d3d565b8061236857506123a7565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239c919061325f565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d990613281565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612469576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612460906132a1565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b82805461249290613701565b90600052602060002090601f0160209004810192826124b457600085556124fb565b82601f106124cd57805160ff19168380011785556124fb565b828001600101855582156124fb579182015b828111156124fa5782518255916020019190600101906124df565b5b509050612508919061250c565b5090565b5b8082111561252557600081600090555060010161250d565b5090565b600061253c612537846134ca565b6134a5565b9050808382526020820190508285602086028201111561255f5761255e613890565b5b60005b8581101561258f5781612575888261268d565b845260208401935060208301925050600181019050612562565b5050509392505050565b60006125ac6125a7846134f6565b6134a5565b905080838252602082019050828560208602820111156125cf576125ce613890565b5b60005b858110156125ff57816125e58882612799565b8452602084019350602083019250506001810190506125d2565b5050509392505050565b600061261c61261784613522565b6134a5565b90508281526020810184848401111561263857612637613895565b5b6126438482856136bf565b509392505050565b600061265e61265984613553565b6134a5565b90508281526020810184848401111561267a57612679613895565b5b6126858482856136bf565b509392505050565b60008135905061269c81613dd3565b92915050565b600082601f8301126126b7576126b661388b565b5b81356126c7848260208601612529565b91505092915050565b600082601f8301126126e5576126e461388b565b5b81356126f5848260208601612599565b91505092915050565b60008135905061270d81613dea565b92915050565b60008135905061272281613e01565b92915050565b60008151905061273781613e01565b92915050565b600082601f8301126127525761275161388b565b5b8135612762848260208601612609565b91505092915050565b600082601f8301126127805761277f61388b565b5b813561279084826020860161264b565b91505092915050565b6000813590506127a881613e18565b92915050565b6000602082840312156127c4576127c361389f565b5b60006127d28482850161268d565b91505092915050565b600080604083850312156127f2576127f161389f565b5b60006128008582860161268d565b92505060206128118582860161268d565b9150509250929050565b600080600080600060a086880312156128375761283661389f565b5b60006128458882890161268d565b95505060206128568882890161268d565b945050604086013567ffffffffffffffff8111156128775761287661389a565b5b612883888289016126d0565b935050606086013567ffffffffffffffff8111156128a4576128a361389a565b5b6128b0888289016126d0565b925050608086013567ffffffffffffffff8111156128d1576128d061389a565b5b6128dd8882890161273d565b9150509295509295909350565b600080600080600060a086880312156129065761290561389f565b5b60006129148882890161268d565b95505060206129258882890161268d565b945050604061293688828901612799565b935050606061294788828901612799565b925050608086013567ffffffffffffffff8111156129685761296761389a565b5b6129748882890161273d565b9150509295509295909350565b60008060006060848603121561299a5761299961389f565b5b60006129a88682870161268d565b935050602084013567ffffffffffffffff8111156129c9576129c861389a565b5b6129d5868287016126d0565b925050604084013567ffffffffffffffff8111156129f6576129f561389a565b5b612a02868287016126d0565b9150509250925092565b600080600080600060a08688031215612a2857612a2761389f565b5b6000612a368882890161268d565b955050602086013567ffffffffffffffff811115612a5757612a5661389a565b5b612a63888289016126d0565b945050604086013567ffffffffffffffff811115612a8457612a8361389a565b5b612a90888289016126d0565b935050606086013567ffffffffffffffff811115612ab157612ab061389a565b5b612abd888289016126d0565b925050608086013567ffffffffffffffff811115612ade57612add61389a565b5b612aea888289016126d0565b9150509295509295909350565b60008060408385031215612b0e57612b0d61389f565b5b6000612b1c8582860161268d565b9250506020612b2d858286016126fe565b9150509250929050565b60008060408385031215612b4e57612b4d61389f565b5b6000612b5c8582860161268d565b9250506020612b6d85828601612799565b9150509250929050565b600080600060608486031215612b9057612b8f61389f565b5b6000612b9e8682870161268d565b9350506020612baf86828701612799565b9250506040612bc086828701612799565b9150509250925092565b60008060408385031215612be157612be061389f565b5b600083013567ffffffffffffffff811115612bff57612bfe61389a565b5b612c0b858286016126a2565b925050602083013567ffffffffffffffff811115612c2c57612c2b61389a565b5b612c38858286016126d0565b9150509250929050565b60008060408385031215612c5957612c5861389f565b5b600083013567ffffffffffffffff811115612c7757612c7661389a565b5b612c83858286016126d0565b925050602083013567ffffffffffffffff811115612ca457612ca361389a565b5b612cb0858286016126d0565b9150509250929050565b600060208284031215612cd057612ccf61389f565b5b6000612cde84828501612713565b91505092915050565b600060208284031215612cfd57612cfc61389f565b5b6000612d0b84828501612728565b91505092915050565b600060208284031215612d2a57612d2961389f565b5b6000612d3884828501612799565b91505092915050565b60008060408385031215612d5857612d5761389f565b5b6000612d6685828601612799565b925050602083013567ffffffffffffffff811115612d8757612d8661389a565b5b612d938582860161276b565b9150509250929050565b60008060408385031215612db457612db361389f565b5b6000612dc285828601612799565b9250506020612dd385828601612799565b9150509250929050565b6000612de983836130f0565b60208301905092915050565b612dfe8161364b565b82525050565b6000612e0f82613594565b612e1981856135c2565b9350612e2483613584565b8060005b83811015612e55578151612e3c8882612ddd565b9750612e47836135b5565b925050600181019050612e28565b5085935050505092915050565b612e6b8161365d565b82525050565b6000612e7c8261359f565b612e8681856135d3565b9350612e968185602086016136ce565b612e9f816138a4565b840191505092915050565b6000612eb5826135aa565b612ebf81856135e4565b9350612ecf8185602086016136ce565b612ed8816138a4565b840191505092915050565b6000612ef06034836135e4565b9150612efb826138c2565b604082019050919050565b6000612f136028836135e4565b9150612f1e82613911565b604082019050919050565b6000612f36602b836135e4565b9150612f4182613960565b604082019050919050565b6000612f596026836135e4565b9150612f64826139af565b604082019050919050565b6000612f7c6024836135e4565b9150612f87826139fe565b604082019050919050565b6000612f9f6029836135e4565b9150612faa82613a4d565b604082019050919050565b6000612fc26025836135e4565b9150612fcd82613a9c565b604082019050919050565b6000612fe56032836135e4565b9150612ff082613aeb565b604082019050919050565b60006130086023836135e4565b915061301382613b3a565b604082019050919050565b600061302b602a836135e4565b915061303682613b89565b604082019050919050565b600061304e6020836135e4565b915061305982613bd8565b602082019050919050565b60006130716029836135e4565b915061307c82613c01565b604082019050919050565b60006130946029836135e4565b915061309f82613c50565b604082019050919050565b60006130b76028836135e4565b91506130c282613c9f565b604082019050919050565b60006130da6021836135e4565b91506130e582613cee565b604082019050919050565b6130f9816136b5565b82525050565b613108816136b5565b82525050565b60006020820190506131236000830184612df5565b92915050565b600060a08201905061313e6000830188612df5565b61314b6020830187612df5565b818103604083015261315d8186612e04565b905081810360608301526131718185612e04565b905081810360808301526131858184612e71565b90509695505050505050565b600060a0820190506131a66000830188612df5565b6131b36020830187612df5565b6131c060408301866130ff565b6131cd60608301856130ff565b81810360808301526131df8184612e71565b90509695505050505050565b600060208201905081810360008301526132058184612e04565b905092915050565b600060408201905081810360008301526132278185612e04565b9050818103602083015261323b8184612e04565b90509392505050565b60006020820190506132596000830184612e62565b92915050565b600060208201905081810360008301526132798184612eaa565b905092915050565b6000602082019050818103600083015261329a81612ee3565b9050919050565b600060208201905081810360008301526132ba81612f06565b9050919050565b600060208201905081810360008301526132da81612f29565b9050919050565b600060208201905081810360008301526132fa81612f4c565b9050919050565b6000602082019050818103600083015261331a81612f6f565b9050919050565b6000602082019050818103600083015261333a81612f92565b9050919050565b6000602082019050818103600083015261335a81612fb5565b9050919050565b6000602082019050818103600083015261337a81612fd8565b9050919050565b6000602082019050818103600083015261339a81612ffb565b9050919050565b600060208201905081810360008301526133ba8161301e565b9050919050565b600060208201905081810360008301526133da81613041565b9050919050565b600060208201905081810360008301526133fa81613064565b9050919050565b6000602082019050818103600083015261341a81613087565b9050919050565b6000602082019050818103600083015261343a816130aa565b9050919050565b6000602082019050818103600083015261345a816130cd565b9050919050565b600060208201905061347660008301846130ff565b92915050565b600060408201905061349160008301856130ff565b61349e60208301846130ff565b9392505050565b60006134af6134c0565b90506134bb8282613733565b919050565b6000604051905090565b600067ffffffffffffffff8211156134e5576134e461383a565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156135115761351061383a565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561353d5761353c61383a565b5b613546826138a4565b9050602081019050919050565b600067ffffffffffffffff82111561356e5761356d61383a565b5b613577826138a4565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613600826136b5565b915061360b836136b5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136405761363f6137ad565b5b828201905092915050565b600061365682613695565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156136ec5780820151818401526020810190506136d1565b838111156136fb576000848401525b50505050565b6000600282049050600182168061371957607f821691505b6020821081141561372d5761372c6137dc565b5b50919050565b61373c826138a4565b810181811067ffffffffffffffff8211171561375b5761375a61383a565b5b80604052505050565b600061376f826136b5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137a2576137a16137ad565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156138885760046000803e6138856000516138b5565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015613d4d57613dd0565b613d556134c0565b60043d036004823e80513d602482011167ffffffffffffffff82111715613d7d575050613dd0565b808201805167ffffffffffffffff811115613d9b5750505050613dd0565b80602083010160043d038501811115613db8575050505050613dd0565b613dc782602001850186613733565b82955050505050505b90565b613ddc8161364b565b8114613de757600080fd5b50565b613df38161365d565b8114613dfe57600080fd5b50565b613e0a81613669565b8114613e1557600080fd5b50565b613e21816136b5565b8114613e2c57600080fd5b5056fea2646970667358221220b2d0b9cbb54bb6f5d5699696a085edf2bc6ebe7083697e782c5a44862d859be764736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012b5760003560e01c8063862440e2116100ad578063c87b56dd11610071578063c87b56dd14610318578063d81d0a1514610348578063e985e9c514610364578063f242432a14610394578063f2fde38b146103b05761012b565b8063862440e2146102885780638da5cb5b146102a457806395d89b41146102c2578063a22cb465146102e0578063b390c0ab146102fc5761012b565b80632eb2c2d6116100f45780632eb2c2d6146101fa5780634e1273f414610216578063510f410414610246578063715018a61461026257806383ca4b6f1461026c5761012b565b8062fdd58e1461013057806301ffc9a71461016057806306fdde03146101905780630e89341c146101ae578063156e29f6146101de575b600080fd5b61014a60048036038101906101459190612b37565b6103cc565b6040516101579190613461565b60405180910390f35b61017a60048036038101906101759190612cba565b610495565b6040516101879190613244565b60405180910390f35b610198610577565b6040516101a5919061325f565b60405180910390f35b6101c860048036038101906101c39190612d14565b610605565b6040516101d5919061325f565b60405180910390f35b6101f860048036038101906101f39190612b77565b6106aa565b005b610214600480360381019061020f919061281b565b610746565b005b610230600480360381019061022b9190612bca565b6107e7565b60405161023d91906131eb565b60405180910390f35b610260600480360381019061025b9190612a0c565b610900565b005b61026a6109a9565b005b61028660048036038101906102819190612c42565b610a31565b005b6102a2600480360381019061029d9190612d41565b610a40565b005b6102ac610b20565b6040516102b9919061310e565b60405180910390f35b6102ca610b4a565b6040516102d7919061325f565b60405180910390f35b6102fa60048036038101906102f59190612af7565b610bd8565b005b61031660048036038101906103119190612d9d565b610bee565b005b610332600480360381019061032d9190612d14565b610bfd565b60405161033f919061325f565b60405180910390f35b610362600480360381019061035d9190612981565b610c9d565b005b61037e600480360381019061037991906127db565b610d39565b60405161038b9190613244565b60405180910390f35b6103ae60048036038101906103a991906128ea565b610dcd565b005b6103ca60048036038101906103c591906127ae565b610e6e565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561043d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610434906132c1565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061056057507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610570575061056f82610f66565b5b9050919050565b6004805461058490613701565b80601f01602080910402602001604051908101604052809291908181526020018280546105b090613701565b80156105fd5780601f106105d2576101008083540402835291602001916105fd565b820191906000526020600020905b8154815290600101906020018083116105e057829003601f168201915b505050505081565b606060066000838152602001908152602001600020805461062590613701565b80601f016020809104026020016040519081016040528092919081815260200182805461065190613701565b801561069e5780601f106106735761010080835404028352916020019161069e565b820191906000526020600020905b81548152906001019060200180831161068157829003601f168201915b50505050509050919050565b6106b2610fd0565b73ffffffffffffffffffffffffffffffffffffffff166106d0610b20565b73ffffffffffffffffffffffffffffffffffffffff1614610726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071d906133c1565b60405180910390fd5b61074183838360405180602001604052806000815250610fd8565b505050565b61074e610fd0565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061079457506107938561078e610fd0565b610d39565b5b6107d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ca90613361565b60405180910390fd5b6107e0858585858561116e565b5050505050565b6060815183511461082d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082490613401565b60405180910390fd5b6000835167ffffffffffffffff81111561084a5761084961383a565b5b6040519080825280602002602001820160405280156108785781602001602082028036833780820191505090505b50905060005b84518110156108f5576108c585828151811061089d5761089c61380b565b5b60200260200101518583815181106108b8576108b761380b565b5b60200260200101516103cc565b8282815181106108d8576108d761380b565b5b602002602001018181525050806108ee90613764565b905061087e565b508091505092915050565b610908610fd0565b73ffffffffffffffffffffffffffffffffffffffff16610926610b20565b73ffffffffffffffffffffffffffffffffffffffff161461097c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610973906133c1565b60405180910390fd5b610987858585611482565b6109a285838360405180602001604052806000815250611733565b5050505050565b6109b1610fd0565b73ffffffffffffffffffffffffffffffffffffffff166109cf610b20565b73ffffffffffffffffffffffffffffffffffffffff1614610a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1c906133c1565b60405180910390fd5b610a2f6000611951565b565b610a3c338383611482565b5050565b610a48610fd0565b73ffffffffffffffffffffffffffffffffffffffff16610a66610b20565b73ffffffffffffffffffffffffffffffffffffffff1614610abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab3906133c1565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190610ae3929190612486565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b82604051610b14919061325f565b60405180910390a25050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60058054610b5790613701565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8390613701565b8015610bd05780601f10610ba557610100808354040283529160200191610bd0565b820191906000526020600020905b815481529060010190602001808311610bb357829003601f168201915b505050505081565b610bea610be3610fd0565b8383611a17565b5050565b610bf9338383611b84565b5050565b60066020528060005260406000206000915090508054610c1c90613701565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4890613701565b8015610c955780601f10610c6a57610100808354040283529160200191610c95565b820191906000526020600020905b815481529060010190602001808311610c7857829003601f168201915b505050505081565b610ca5610fd0565b73ffffffffffffffffffffffffffffffffffffffff16610cc3610b20565b73ffffffffffffffffffffffffffffffffffffffff1614610d19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d10906133c1565b60405180910390fd5b610d3483838360405180602001604052806000815250611733565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610dd5610fd0565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610e1b5750610e1a85610e15610fd0565b610d39565b5b610e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5190613321565b60405180910390fd5b610e678585858585611da1565b5050505050565b610e76610fd0565b73ffffffffffffffffffffffffffffffffffffffff16610e94610b20565b73ffffffffffffffffffffffffffffffffffffffff1614610eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee1906133c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f51906132e1565b60405180910390fd5b610f6381611951565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f90613441565b60405180910390fd5b6000611052610fd0565b90506110738160008761106488612023565b61106d88612023565b8761209d565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110d291906135f5565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161115092919061347c565b60405180910390a4611167816000878787876120a5565b5050505050565b81518351146111b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a990613421565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121990613341565b60405180910390fd5b600061122c610fd0565b905061123c81878787878761209d565b60005b84518110156113ed57600085828151811061125d5761125c61380b565b5b60200260200101519050600085838151811061127c5761127b61380b565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561131d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611314906133a1565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113d291906135f5565b92505081905550505050806113e690613764565b905061123f565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161146492919061320d565b60405180910390a461147a81878787878761228c565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e990613381565b60405180910390fd5b8051825114611536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152d90613421565b60405180910390fd5b6000611540610fd0565b90506115608185600086866040518060200160405280600081525061209d565b60005b83518110156116ad5760008482815181106115815761158061380b565b5b6020026020010151905060008483815181106115a05761159f61380b565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163890613301565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505080806116a590613764565b915050611563565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb868660405161172592919061320d565b60405180910390a450505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a90613441565b60405180910390fd5b81518351146117e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117de90613421565b60405180910390fd5b60006117f1610fd0565b90506118028160008787878761209d565b60005b84518110156118bb578381815181106118215761182061380b565b5b602002602001015160008087848151811061183f5761183e61380b565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118a191906135f5565b9250508190555080806118b390613764565b915050611805565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161193392919061320d565b60405180910390a461194a8160008787878761228c565b5050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7d906133e1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b779190613244565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611beb90613381565b60405180910390fd5b6000611bfe610fd0565b9050611c2e81856000611c1087612023565b611c1987612023565b6040518060200160405280600081525061209d565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbc90613301565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611d9292919061347c565b60405180910390a45050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0890613341565b60405180910390fd5b6000611e1b610fd0565b9050611e3b818787611e2c88612023565b611e3588612023565b8761209d565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec9906133a1565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f8791906135f5565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62888860405161200492919061347c565b60405180910390a461201a8288888888886120a5565b50505050505050565b60606000600167ffffffffffffffff8111156120425761204161383a565b5b6040519080825280602002602001820160405280156120705781602001602082028036833780820191505090505b50905082816000815181106120885761208761380b565b5b60200260200101818152505080915050919050565b505050505050565b6120c48473ffffffffffffffffffffffffffffffffffffffff16612473565b15612284578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161210a959493929190613191565b602060405180830381600087803b15801561212457600080fd5b505af192505050801561215557506040513d601f19601f820116820180604052508101906121529190612ce7565b60015b6121fb57612161613869565b806308c379a014156121be5750612176613d3d565b8061218157506121c0565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b5919061325f565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f290613281565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612282576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612279906132a1565b60405180910390fd5b505b505050505050565b6122ab8473ffffffffffffffffffffffffffffffffffffffff16612473565b1561246b578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016122f1959493929190613129565b602060405180830381600087803b15801561230b57600080fd5b505af192505050801561233c57506040513d601f19601f820116820180604052508101906123399190612ce7565b60015b6123e257612348613869565b806308c379a014156123a5575061235d613d3d565b8061236857506123a7565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239c919061325f565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d990613281565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612469576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612460906132a1565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b82805461249290613701565b90600052602060002090601f0160209004810192826124b457600085556124fb565b82601f106124cd57805160ff19168380011785556124fb565b828001600101855582156124fb579182015b828111156124fa5782518255916020019190600101906124df565b5b509050612508919061250c565b5090565b5b8082111561252557600081600090555060010161250d565b5090565b600061253c612537846134ca565b6134a5565b9050808382526020820190508285602086028201111561255f5761255e613890565b5b60005b8581101561258f5781612575888261268d565b845260208401935060208301925050600181019050612562565b5050509392505050565b60006125ac6125a7846134f6565b6134a5565b905080838252602082019050828560208602820111156125cf576125ce613890565b5b60005b858110156125ff57816125e58882612799565b8452602084019350602083019250506001810190506125d2565b5050509392505050565b600061261c61261784613522565b6134a5565b90508281526020810184848401111561263857612637613895565b5b6126438482856136bf565b509392505050565b600061265e61265984613553565b6134a5565b90508281526020810184848401111561267a57612679613895565b5b6126858482856136bf565b509392505050565b60008135905061269c81613dd3565b92915050565b600082601f8301126126b7576126b661388b565b5b81356126c7848260208601612529565b91505092915050565b600082601f8301126126e5576126e461388b565b5b81356126f5848260208601612599565b91505092915050565b60008135905061270d81613dea565b92915050565b60008135905061272281613e01565b92915050565b60008151905061273781613e01565b92915050565b600082601f8301126127525761275161388b565b5b8135612762848260208601612609565b91505092915050565b600082601f8301126127805761277f61388b565b5b813561279084826020860161264b565b91505092915050565b6000813590506127a881613e18565b92915050565b6000602082840312156127c4576127c361389f565b5b60006127d28482850161268d565b91505092915050565b600080604083850312156127f2576127f161389f565b5b60006128008582860161268d565b92505060206128118582860161268d565b9150509250929050565b600080600080600060a086880312156128375761283661389f565b5b60006128458882890161268d565b95505060206128568882890161268d565b945050604086013567ffffffffffffffff8111156128775761287661389a565b5b612883888289016126d0565b935050606086013567ffffffffffffffff8111156128a4576128a361389a565b5b6128b0888289016126d0565b925050608086013567ffffffffffffffff8111156128d1576128d061389a565b5b6128dd8882890161273d565b9150509295509295909350565b600080600080600060a086880312156129065761290561389f565b5b60006129148882890161268d565b95505060206129258882890161268d565b945050604061293688828901612799565b935050606061294788828901612799565b925050608086013567ffffffffffffffff8111156129685761296761389a565b5b6129748882890161273d565b9150509295509295909350565b60008060006060848603121561299a5761299961389f565b5b60006129a88682870161268d565b935050602084013567ffffffffffffffff8111156129c9576129c861389a565b5b6129d5868287016126d0565b925050604084013567ffffffffffffffff8111156129f6576129f561389a565b5b612a02868287016126d0565b9150509250925092565b600080600080600060a08688031215612a2857612a2761389f565b5b6000612a368882890161268d565b955050602086013567ffffffffffffffff811115612a5757612a5661389a565b5b612a63888289016126d0565b945050604086013567ffffffffffffffff811115612a8457612a8361389a565b5b612a90888289016126d0565b935050606086013567ffffffffffffffff811115612ab157612ab061389a565b5b612abd888289016126d0565b925050608086013567ffffffffffffffff811115612ade57612add61389a565b5b612aea888289016126d0565b9150509295509295909350565b60008060408385031215612b0e57612b0d61389f565b5b6000612b1c8582860161268d565b9250506020612b2d858286016126fe565b9150509250929050565b60008060408385031215612b4e57612b4d61389f565b5b6000612b5c8582860161268d565b9250506020612b6d85828601612799565b9150509250929050565b600080600060608486031215612b9057612b8f61389f565b5b6000612b9e8682870161268d565b9350506020612baf86828701612799565b9250506040612bc086828701612799565b9150509250925092565b60008060408385031215612be157612be061389f565b5b600083013567ffffffffffffffff811115612bff57612bfe61389a565b5b612c0b858286016126a2565b925050602083013567ffffffffffffffff811115612c2c57612c2b61389a565b5b612c38858286016126d0565b9150509250929050565b60008060408385031215612c5957612c5861389f565b5b600083013567ffffffffffffffff811115612c7757612c7661389a565b5b612c83858286016126d0565b925050602083013567ffffffffffffffff811115612ca457612ca361389a565b5b612cb0858286016126d0565b9150509250929050565b600060208284031215612cd057612ccf61389f565b5b6000612cde84828501612713565b91505092915050565b600060208284031215612cfd57612cfc61389f565b5b6000612d0b84828501612728565b91505092915050565b600060208284031215612d2a57612d2961389f565b5b6000612d3884828501612799565b91505092915050565b60008060408385031215612d5857612d5761389f565b5b6000612d6685828601612799565b925050602083013567ffffffffffffffff811115612d8757612d8661389a565b5b612d938582860161276b565b9150509250929050565b60008060408385031215612db457612db361389f565b5b6000612dc285828601612799565b9250506020612dd385828601612799565b9150509250929050565b6000612de983836130f0565b60208301905092915050565b612dfe8161364b565b82525050565b6000612e0f82613594565b612e1981856135c2565b9350612e2483613584565b8060005b83811015612e55578151612e3c8882612ddd565b9750612e47836135b5565b925050600181019050612e28565b5085935050505092915050565b612e6b8161365d565b82525050565b6000612e7c8261359f565b612e8681856135d3565b9350612e968185602086016136ce565b612e9f816138a4565b840191505092915050565b6000612eb5826135aa565b612ebf81856135e4565b9350612ecf8185602086016136ce565b612ed8816138a4565b840191505092915050565b6000612ef06034836135e4565b9150612efb826138c2565b604082019050919050565b6000612f136028836135e4565b9150612f1e82613911565b604082019050919050565b6000612f36602b836135e4565b9150612f4182613960565b604082019050919050565b6000612f596026836135e4565b9150612f64826139af565b604082019050919050565b6000612f7c6024836135e4565b9150612f87826139fe565b604082019050919050565b6000612f9f6029836135e4565b9150612faa82613a4d565b604082019050919050565b6000612fc26025836135e4565b9150612fcd82613a9c565b604082019050919050565b6000612fe56032836135e4565b9150612ff082613aeb565b604082019050919050565b60006130086023836135e4565b915061301382613b3a565b604082019050919050565b600061302b602a836135e4565b915061303682613b89565b604082019050919050565b600061304e6020836135e4565b915061305982613bd8565b602082019050919050565b60006130716029836135e4565b915061307c82613c01565b604082019050919050565b60006130946029836135e4565b915061309f82613c50565b604082019050919050565b60006130b76028836135e4565b91506130c282613c9f565b604082019050919050565b60006130da6021836135e4565b91506130e582613cee565b604082019050919050565b6130f9816136b5565b82525050565b613108816136b5565b82525050565b60006020820190506131236000830184612df5565b92915050565b600060a08201905061313e6000830188612df5565b61314b6020830187612df5565b818103604083015261315d8186612e04565b905081810360608301526131718185612e04565b905081810360808301526131858184612e71565b90509695505050505050565b600060a0820190506131a66000830188612df5565b6131b36020830187612df5565b6131c060408301866130ff565b6131cd60608301856130ff565b81810360808301526131df8184612e71565b90509695505050505050565b600060208201905081810360008301526132058184612e04565b905092915050565b600060408201905081810360008301526132278185612e04565b9050818103602083015261323b8184612e04565b90509392505050565b60006020820190506132596000830184612e62565b92915050565b600060208201905081810360008301526132798184612eaa565b905092915050565b6000602082019050818103600083015261329a81612ee3565b9050919050565b600060208201905081810360008301526132ba81612f06565b9050919050565b600060208201905081810360008301526132da81612f29565b9050919050565b600060208201905081810360008301526132fa81612f4c565b9050919050565b6000602082019050818103600083015261331a81612f6f565b9050919050565b6000602082019050818103600083015261333a81612f92565b9050919050565b6000602082019050818103600083015261335a81612fb5565b9050919050565b6000602082019050818103600083015261337a81612fd8565b9050919050565b6000602082019050818103600083015261339a81612ffb565b9050919050565b600060208201905081810360008301526133ba8161301e565b9050919050565b600060208201905081810360008301526133da81613041565b9050919050565b600060208201905081810360008301526133fa81613064565b9050919050565b6000602082019050818103600083015261341a81613087565b9050919050565b6000602082019050818103600083015261343a816130aa565b9050919050565b6000602082019050818103600083015261345a816130cd565b9050919050565b600060208201905061347660008301846130ff565b92915050565b600060408201905061349160008301856130ff565b61349e60208301846130ff565b9392505050565b60006134af6134c0565b90506134bb8282613733565b919050565b6000604051905090565b600067ffffffffffffffff8211156134e5576134e461383a565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156135115761351061383a565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561353d5761353c61383a565b5b613546826138a4565b9050602081019050919050565b600067ffffffffffffffff82111561356e5761356d61383a565b5b613577826138a4565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613600826136b5565b915061360b836136b5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136405761363f6137ad565b5b828201905092915050565b600061365682613695565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156136ec5780820151818401526020810190506136d1565b838111156136fb576000848401525b50505050565b6000600282049050600182168061371957607f821691505b6020821081141561372d5761372c6137dc565b5b50919050565b61373c826138a4565b810181811067ffffffffffffffff8211171561375b5761375a61383a565b5b80604052505050565b600061376f826136b5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137a2576137a16137ad565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156138885760046000803e6138856000516138b5565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015613d4d57613dd0565b613d556134c0565b60043d036004823e80513d602482011167ffffffffffffffff82111715613d7d575050613dd0565b808201805167ffffffffffffffff811115613d9b5750505050613dd0565b80602083010160043d038501811115613db8575050505050613dd0565b613dc782602001850186613733565b82955050505050505b90565b613ddc8161364b565b8114613de757600080fd5b50565b613df38161365d565b8114613dfe57600080fd5b50565b613e0a81613669565b8114613e1557600080fd5b50565b613e21816136b5565b8114613e2c57600080fd5b5056fea2646970667358221220b2d0b9cbb54bb6f5d5699696a085edf2bc6ebe7083697e782c5a44862d859be764736f6c63430008070033

Deployed Bytecode Sourcemap

36361:1229:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22831:231;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21854:310;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36409:18;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37484:101;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36591:111;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24770:442;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23228:524;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37083:265;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2558:103;;;:::i;:::-;;36954:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37354:124;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1907:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36432:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23825:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36857:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36459:39;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36708:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24052:168;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24292:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2816:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22831:231;22917:7;22964:1;22945:21;;:7;:21;;;;22937:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;23032:9;:13;23042:2;23032:13;;;;;;;;;;;:22;23046:7;23032:22;;;;;;;;;;;;;;;;23025:29;;22831:231;;;;:::o;21854:310::-;21956:4;22008:26;21993:41;;;:11;:41;;;;:110;;;;22066:37;22051:52;;;:11;:52;;;;21993:110;:163;;;;22120:36;22144:11;22120:23;:36::i;:::-;21993:163;21973:183;;21854:310;;;:::o;36409:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37484:101::-;37537:13;37566:8;:13;37575:3;37566:13;;;;;;;;;;;37559:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37484:101;;;:::o;36591:111::-;2138:12;:10;:12::i;:::-;2127:23;;:7;:5;:7::i;:::-;:23;;;2119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36668:28:::1;36674:3;36679;36684:7;36668:28;;;;;;;;;;;::::0;:5:::1;:28::i;:::-;36591:111:::0;;;:::o;24770:442::-;25011:12;:10;:12::i;:::-;25003:20;;:4;:20;;;:60;;;;25027:36;25044:4;25050:12;:10;:12::i;:::-;25027:16;:36::i;:::-;25003:60;24981:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;25152:52;25175:4;25181:2;25185:3;25190:7;25199:4;25152:22;:52::i;:::-;24770:442;;;;;:::o;23228:524::-;23384:16;23445:3;:10;23426:8;:15;:29;23418:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;23514:30;23561:8;:15;23547:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23514:63;;23595:9;23590:122;23614:8;:15;23610:1;:19;23590:122;;;23670:30;23680:8;23689:1;23680:11;;;;;;;;:::i;:::-;;;;;;;;23693:3;23697:1;23693:6;;;;;;;;:::i;:::-;;;;;;;;23670:9;:30::i;:::-;23651:13;23665:1;23651:16;;;;;;;;:::i;:::-;;;;;;;:49;;;;;23631:3;;;;:::i;:::-;;;23590:122;;;;23731:13;23724:20;;;23228:524;;;;:::o;37083:265::-;2138:12;:10;:12::i;:::-;2127:23;;:7;:5;:7::i;:::-;:23;;;2119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37249:41:::1;37260:5;37267:8;37277:12;37249:10;:41::i;:::-;37297:45;37308:5;37315:8;37325:12;37297:45;;;;;;;;;;;::::0;:10:::1;:45::i;:::-;37083:265:::0;;;;;:::o;2558:103::-;2138:12;:10;:12::i;:::-;2127:23;;:7;:5;:7::i;:::-;:23;;;2119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2623:30:::1;2650:1;2623:18;:30::i;:::-;2558:103::o:0;36954:123::-;37033:38;37044:10;37056:4;37062:8;37033:10;:38::i;:::-;36954:123;;:::o;37354:124::-;2138:12;:10;:12::i;:::-;2127:23;;:7;:5;:7::i;:::-;:23;;;2119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37442:4:::1;37426:8;:13;37435:3;37426:13;;;;;;;;;;;:20;;;;;;;;;;;;:::i;:::-;;37468:3;37458:14;37462:4;37458:14;;;;;;:::i;:::-;;;;;;;;37354:124:::0;;:::o;1907:87::-;1953:7;1980:6;;;;;;;;;;;1973:13;;1907:87;:::o;36432:20::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23825:155::-;23920:52;23939:12;:10;:12::i;:::-;23953:8;23963;23920:18;:52::i;:::-;23825:155;;:::o;36857:91::-;36911:31;36917:10;36929:3;36934:7;36911:5;:31::i;:::-;36857:91;;:::o;36459:39::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36708:143::-;2138:12;:10;:12::i;:::-;2127:23;;:7;:5;:7::i;:::-;:23;;;2119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36810:35:::1;36821:3;36826:4;36832:8;36810:35;;;;;;;;;;;::::0;:10:::1;:35::i;:::-;36708:143:::0;;;:::o;24052:168::-;24151:4;24175:18;:27;24194:7;24175:27;;;;;;;;;;;;;;;:37;24203:8;24175:37;;;;;;;;;;;;;;;;;;;;;;;;;24168:44;;24052:168;;;;:::o;24292:401::-;24508:12;:10;:12::i;:::-;24500:20;;:4;:20;;;:60;;;;24524:36;24541:4;24547:12;:10;:12::i;:::-;24524:16;:36::i;:::-;24500:60;24478:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;24640:45;24658:4;24664:2;24668;24672:6;24680:4;24640:17;:45::i;:::-;24292:401;;;;;:::o;2816:201::-;2138:12;:10;:12::i;:::-;2127:23;;:7;:5;:7::i;:::-;:23;;;2119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2925:1:::1;2905:22;;:8;:22;;;;2897:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2981:28;3000:8;2981:18;:28::i;:::-;2816:201:::0;:::o;13278:157::-;13363:4;13402:25;13387:40;;;:11;:40;;;;13380:47;;13278:157;;;:::o;633:98::-;686:7;713:10;706:17;;633:98;:::o;29246:569::-;29413:1;29399:16;;:2;:16;;;;29391:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;29466:16;29485:12;:10;:12::i;:::-;29466:31;;29510:102;29531:8;29549:1;29553:2;29557:21;29575:2;29557:17;:21::i;:::-;29580:25;29598:6;29580:17;:25::i;:::-;29607:4;29510:20;:102::i;:::-;29646:6;29625:9;:13;29635:2;29625:13;;;;;;;;;;;:17;29639:2;29625:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;29705:2;29668:52;;29701:1;29668:52;;29683:8;29668:52;;;29709:2;29713:6;29668:52;;;;;;;:::i;:::-;;;;;;;;29733:74;29764:8;29782:1;29786:2;29790;29794:6;29802:4;29733:30;:74::i;:::-;29380:435;29246:569;;;;:::o;26854:1074::-;27081:7;:14;27067:3;:10;:28;27059:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;27173:1;27159:16;;:2;:16;;;;27151:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;27230:16;27249:12;:10;:12::i;:::-;27230:31;;27274:60;27295:8;27305:4;27311:2;27315:3;27320:7;27329:4;27274:20;:60::i;:::-;27352:9;27347:421;27371:3;:10;27367:1;:14;27347:421;;;27403:10;27416:3;27420:1;27416:6;;;;;;;;:::i;:::-;;;;;;;;27403:19;;27437:14;27454:7;27462:1;27454:10;;;;;;;;:::i;:::-;;;;;;;;27437:27;;27481:19;27503:9;:13;27513:2;27503:13;;;;;;;;;;;:19;27517:4;27503:19;;;;;;;;;;;;;;;;27481:41;;27560:6;27545:11;:21;;27537:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;27693:6;27679:11;:20;27657:9;:13;27667:2;27657:13;;;;;;;;;;;:19;27671:4;27657:19;;;;;;;;;;;;;;;:42;;;;27750:6;27729:9;:13;27739:2;27729:13;;;;;;;;;;;:17;27743:2;27729:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;27388:380;;;27383:3;;;;:::i;:::-;;;27347:421;;;;27815:2;27785:47;;27809:4;27785:47;;27799:8;27785:47;;;27819:3;27824:7;27785:47;;;;;;;:::i;:::-;;;;;;;;27845:75;27881:8;27891:4;27897:2;27901:3;27906:7;27915:4;27845:35;:75::i;:::-;27048:880;26854:1074;;;;;:::o;32007:891::-;32175:1;32159:18;;:4;:18;;;;32151:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;32250:7;:14;32236:3;:10;:28;32228:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;32322:16;32341:12;:10;:12::i;:::-;32322:31;;32366:66;32387:8;32397:4;32411:1;32415:3;32420:7;32366:66;;;;;;;;;;;;:20;:66::i;:::-;32450:9;32445:373;32469:3;:10;32465:1;:14;32445:373;;;32501:10;32514:3;32518:1;32514:6;;;;;;;;:::i;:::-;;;;;;;;32501:19;;32535:14;32552:7;32560:1;32552:10;;;;;;;;:::i;:::-;;;;;;;;32535:27;;32579:19;32601:9;:13;32611:2;32601:13;;;;;;;;;;;:19;32615:4;32601:19;;;;;;;;;;;;;;;;32579:41;;32658:6;32643:11;:21;;32635:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;32785:6;32771:11;:20;32749:9;:13;32759:2;32749:13;;;;;;;;;;;:19;32763:4;32749:19;;;;;;;;;;;;;;;:42;;;;32486:332;;;32481:3;;;;;:::i;:::-;;;;32445:373;;;;32873:1;32835:55;;32859:4;32835:55;;32849:8;32835:55;;;32877:3;32882:7;32835:55;;;;;;;:::i;:::-;;;;;;;;32140:758;32007:891;;;:::o;30171:735::-;30363:1;30349:16;;:2;:16;;;;30341:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;30436:7;:14;30422:3;:10;:28;30414:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;30508:16;30527:12;:10;:12::i;:::-;30508:31;;30552:66;30573:8;30591:1;30595:2;30599:3;30604:7;30613:4;30552:20;:66::i;:::-;30636:9;30631:103;30655:3;:10;30651:1;:14;30631:103;;;30712:7;30720:1;30712:10;;;;;;;;:::i;:::-;;;;;;;;30687:9;:17;30697:3;30701:1;30697:6;;;;;;;;:::i;:::-;;;;;;;;30687:17;;;;;;;;;;;:21;30705:2;30687:21;;;;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;;;;;30667:3;;;;;:::i;:::-;;;;30631:103;;;;30787:2;30751:53;;30783:1;30751:53;;30765:8;30751:53;;;30791:3;30796:7;30751:53;;;;;;;:::i;:::-;;;;;;;;30817:81;30853:8;30871:1;30875:2;30879:3;30884:7;30893:4;30817:35;:81::i;:::-;30330:576;30171:735;;;;:::o;3177:191::-;3251:16;3270:6;;;;;;;;;;;3251:25;;3296:8;3287:6;;:17;;;;;;;;;;;;;;;;;;3351:8;3320:40;;3341:8;3320:40;;;;;;;;;;;;3240:128;3177:191;:::o;33040:331::-;33195:8;33186:17;;:5;:17;;;;33178:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;33298:8;33260:18;:25;33279:5;33260:25;;;;;;;;;;;;;;;:35;33286:8;33260:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;33344:8;33322:41;;33337:5;33322:41;;;33354:8;33322:41;;;;;;:::i;:::-;;;;;;;;33040:331;;;:::o;31156:648::-;31299:1;31283:18;;:4;:18;;;;31275:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;31354:16;31373:12;:10;:12::i;:::-;31354:31;;31398:102;31419:8;31429:4;31443:1;31447:21;31465:2;31447:17;:21::i;:::-;31470:25;31488:6;31470:17;:25::i;:::-;31398:102;;;;;;;;;;;;:20;:102::i;:::-;31513:19;31535:9;:13;31545:2;31535:13;;;;;;;;;;;:19;31549:4;31535:19;;;;;;;;;;;;;;;;31513:41;;31588:6;31573:11;:21;;31565:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;31707:6;31693:11;:20;31671:9;:13;31681:2;31671:13;;;;;;;;;;;:19;31685:4;31671:19;;;;;;;;;;;;;;;:42;;;;31781:1;31742:54;;31767:4;31742:54;;31757:8;31742:54;;;31785:2;31789:6;31742:54;;;;;;;:::i;:::-;;;;;;;;31264:540;;31156:648;;;:::o;25676:820::-;25878:1;25864:16;;:2;:16;;;;25856:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;25935:16;25954:12;:10;:12::i;:::-;25935:31;;25979:96;26000:8;26010:4;26016:2;26020:21;26038:2;26020:17;:21::i;:::-;26043:25;26061:6;26043:17;:25::i;:::-;26070:4;25979:20;:96::i;:::-;26088:19;26110:9;:13;26120:2;26110:13;;;;;;;;;;;:19;26124:4;26110:19;;;;;;;;;;;;;;;;26088:41;;26163:6;26148:11;:21;;26140:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;26288:6;26274:11;:20;26252:9;:13;26262:2;26252:13;;;;;;;;;;;:19;26266:4;26252:19;;;;;;;;;;;;;;;:42;;;;26337:6;26316:9;:13;26326:2;26316:13;;;;;;;;;;;:17;26330:2;26316:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;26392:2;26361:46;;26386:4;26361:46;;26376:8;26361:46;;;26396:2;26400:6;26361:46;;;;;;;:::i;:::-;;;;;;;;26420:68;26451:8;26461:4;26467:2;26471;26475:6;26483:4;26420:30;:68::i;:::-;25845:651;;25676:820;;;;;:::o;36129:198::-;36195:16;36224:22;36263:1;36249:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36224:41;;36287:7;36276:5;36282:1;36276:8;;;;;;;;:::i;:::-;;;;;;;:18;;;;;36314:5;36307:12;;;36129:198;;;:::o;34327:221::-;;;;;;;:::o;34556:744::-;34771:15;:2;:13;;;:15::i;:::-;34767:526;;;34824:2;34807:38;;;34846:8;34856:4;34862:2;34866:6;34874:4;34807:72;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34803:479;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;35155:6;35148:14;;;;;;;;;;;:::i;:::-;;;;;;;;34803:479;;;35204:62;;;;;;;;;;:::i;:::-;;;;;;;;34803:479;34941:43;;;34929:55;;;:8;:55;;;;34925:154;;35009:50;;;;;;;;;;:::i;:::-;;;;;;;;34925:154;34880:214;34767:526;34556:744;;;;;;:::o;35308:813::-;35548:15;:2;:13;;;:15::i;:::-;35544:570;;;35601:2;35584:43;;;35628:8;35638:4;35644:3;35649:7;35658:4;35584:79;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35580:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;35976:6;35969:14;;;;;;;;;;;:::i;:::-;;;;;;;;35580:523;;;36025:62;;;;;;;;;;:::i;:::-;;;;;;;;35580:523;35757:48;;;35745:60;;;:8;:60;;;;35741:159;;35830:50;;;;;;;;;;:::i;:::-;;;;;;;;35741:159;35664:251;35544:570;35308:813;;;;;;:::o;4194:387::-;4254:4;4462:12;4529:7;4517:20;4509:28;;4572:1;4565:4;:8;4558:15;;;4194:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;769:::-;865:5;890:81;906:64;963:6;906:64;:::i;:::-;890:81;:::i;:::-;881:90;;991:5;1020:6;1013:5;1006:21;1054:4;1047:5;1043:16;1036:23;;1080:6;1130:3;1122:4;1114:6;1110:17;1105:3;1101:27;1098:36;1095:143;;;1149:79;;:::i;:::-;1095:143;1262:1;1247:238;1272:6;1269:1;1266:13;1247:238;;;1340:3;1369:37;1402:3;1390:10;1369:37;:::i;:::-;1364:3;1357:50;1436:4;1431:3;1427:14;1420:21;;1470:4;1465:3;1461:14;1454:21;;1307:178;1294:1;1291;1287:9;1282:14;;1247:238;;;1251:14;871:620;;769:722;;;;;:::o;1497:410::-;1574:5;1599:65;1615:48;1656:6;1615:48;:::i;:::-;1599:65;:::i;:::-;1590:74;;1687:6;1680:5;1673:21;1725:4;1718:5;1714:16;1763:3;1754:6;1749:3;1745:16;1742:25;1739:112;;;1770:79;;:::i;:::-;1739:112;1860:41;1894:6;1889:3;1884;1860:41;:::i;:::-;1580:327;1497:410;;;;;:::o;1913:412::-;1991:5;2016:66;2032:49;2074:6;2032:49;:::i;:::-;2016:66;:::i;:::-;2007:75;;2105:6;2098:5;2091:21;2143:4;2136:5;2132:16;2181:3;2172:6;2167:3;2163:16;2160:25;2157:112;;;2188:79;;:::i;:::-;2157:112;2278:41;2312:6;2307:3;2302;2278:41;:::i;:::-;1997:328;1913:412;;;;;:::o;2331:139::-;2377:5;2415:6;2402:20;2393:29;;2431:33;2458:5;2431:33;:::i;:::-;2331:139;;;;:::o;2493:370::-;2564:5;2613:3;2606:4;2598:6;2594:17;2590:27;2580:122;;2621:79;;:::i;:::-;2580:122;2738:6;2725:20;2763:94;2853:3;2845:6;2838:4;2830:6;2826:17;2763:94;:::i;:::-;2754:103;;2570:293;2493:370;;;;:::o;2886:::-;2957:5;3006:3;2999:4;2991:6;2987:17;2983:27;2973:122;;3014:79;;:::i;:::-;2973:122;3131:6;3118:20;3156:94;3246:3;3238:6;3231:4;3223:6;3219:17;3156:94;:::i;:::-;3147:103;;2963:293;2886:370;;;;:::o;3262:133::-;3305:5;3343:6;3330:20;3321:29;;3359:30;3383:5;3359:30;:::i;:::-;3262:133;;;;:::o;3401:137::-;3446:5;3484:6;3471:20;3462:29;;3500:32;3526:5;3500:32;:::i;:::-;3401:137;;;;:::o;3544:141::-;3600:5;3631:6;3625:13;3616:22;;3647:32;3673:5;3647:32;:::i;:::-;3544:141;;;;:::o;3704:338::-;3759:5;3808:3;3801:4;3793:6;3789:17;3785:27;3775:122;;3816:79;;:::i;:::-;3775:122;3933:6;3920:20;3958:78;4032:3;4024:6;4017:4;4009:6;4005:17;3958:78;:::i;:::-;3949:87;;3765:277;3704:338;;;;:::o;4062:340::-;4118:5;4167:3;4160:4;4152:6;4148:17;4144:27;4134:122;;4175:79;;:::i;:::-;4134:122;4292:6;4279:20;4317:79;4392:3;4384:6;4377:4;4369:6;4365:17;4317:79;:::i;:::-;4308:88;;4124:278;4062:340;;;;:::o;4408:139::-;4454:5;4492:6;4479:20;4470:29;;4508:33;4535:5;4508:33;:::i;:::-;4408:139;;;;:::o;4553:329::-;4612:6;4661:2;4649:9;4640:7;4636:23;4632:32;4629:119;;;4667:79;;:::i;:::-;4629:119;4787:1;4812:53;4857:7;4848:6;4837:9;4833:22;4812:53;:::i;:::-;4802:63;;4758:117;4553:329;;;;:::o;4888:474::-;4956:6;4964;5013:2;5001:9;4992:7;4988:23;4984:32;4981:119;;;5019:79;;:::i;:::-;4981:119;5139:1;5164:53;5209:7;5200:6;5189:9;5185:22;5164:53;:::i;:::-;5154:63;;5110:117;5266:2;5292:53;5337:7;5328:6;5317:9;5313:22;5292:53;:::i;:::-;5282:63;;5237:118;4888:474;;;;;:::o;5368:1509::-;5522:6;5530;5538;5546;5554;5603:3;5591:9;5582:7;5578:23;5574:33;5571:120;;;5610:79;;:::i;:::-;5571:120;5730:1;5755:53;5800:7;5791:6;5780:9;5776:22;5755:53;:::i;:::-;5745:63;;5701:117;5857:2;5883:53;5928:7;5919:6;5908:9;5904:22;5883:53;:::i;:::-;5873:63;;5828:118;6013:2;6002:9;5998:18;5985:32;6044:18;6036:6;6033:30;6030:117;;;6066:79;;:::i;:::-;6030:117;6171:78;6241:7;6232:6;6221:9;6217:22;6171:78;:::i;:::-;6161:88;;5956:303;6326:2;6315:9;6311:18;6298:32;6357:18;6349:6;6346:30;6343:117;;;6379:79;;:::i;:::-;6343:117;6484:78;6554:7;6545:6;6534:9;6530:22;6484:78;:::i;:::-;6474:88;;6269:303;6639:3;6628:9;6624:19;6611:33;6671:18;6663:6;6660:30;6657:117;;;6693:79;;:::i;:::-;6657:117;6798:62;6852:7;6843:6;6832:9;6828:22;6798:62;:::i;:::-;6788:72;;6582:288;5368:1509;;;;;;;;:::o;6883:1089::-;6987:6;6995;7003;7011;7019;7068:3;7056:9;7047:7;7043:23;7039:33;7036:120;;;7075:79;;:::i;:::-;7036:120;7195:1;7220:53;7265:7;7256:6;7245:9;7241:22;7220:53;:::i;:::-;7210:63;;7166:117;7322:2;7348:53;7393:7;7384:6;7373:9;7369:22;7348:53;:::i;:::-;7338:63;;7293:118;7450:2;7476:53;7521:7;7512:6;7501:9;7497:22;7476:53;:::i;:::-;7466:63;;7421:118;7578:2;7604:53;7649:7;7640:6;7629:9;7625:22;7604:53;:::i;:::-;7594:63;;7549:118;7734:3;7723:9;7719:19;7706:33;7766:18;7758:6;7755:30;7752:117;;;7788:79;;:::i;:::-;7752:117;7893:62;7947:7;7938:6;7927:9;7923:22;7893:62;:::i;:::-;7883:72;;7677:288;6883:1089;;;;;;;;:::o;7978:1039::-;8105:6;8113;8121;8170:2;8158:9;8149:7;8145:23;8141:32;8138:119;;;8176:79;;:::i;:::-;8138:119;8296:1;8321:53;8366:7;8357:6;8346:9;8342:22;8321:53;:::i;:::-;8311:63;;8267:117;8451:2;8440:9;8436:18;8423:32;8482:18;8474:6;8471:30;8468:117;;;8504:79;;:::i;:::-;8468:117;8609:78;8679:7;8670:6;8659:9;8655:22;8609:78;:::i;:::-;8599:88;;8394:303;8764:2;8753:9;8749:18;8736:32;8795:18;8787:6;8784:30;8781:117;;;8817:79;;:::i;:::-;8781:117;8922:78;8992:7;8983:6;8972:9;8968:22;8922:78;:::i;:::-;8912:88;;8707:303;7978:1039;;;;;:::o;9023:1751::-;9218:6;9226;9234;9242;9250;9299:3;9287:9;9278:7;9274:23;9270:33;9267:120;;;9306:79;;:::i;:::-;9267:120;9426:1;9451:53;9496:7;9487:6;9476:9;9472:22;9451:53;:::i;:::-;9441:63;;9397:117;9581:2;9570:9;9566:18;9553:32;9612:18;9604:6;9601:30;9598:117;;;9634:79;;:::i;:::-;9598:117;9739:78;9809:7;9800:6;9789:9;9785:22;9739:78;:::i;:::-;9729:88;;9524:303;9894:2;9883:9;9879:18;9866:32;9925:18;9917:6;9914:30;9911:117;;;9947:79;;:::i;:::-;9911:117;10052:78;10122:7;10113:6;10102:9;10098:22;10052:78;:::i;:::-;10042:88;;9837:303;10207:2;10196:9;10192:18;10179:32;10238:18;10230:6;10227:30;10224:117;;;10260:79;;:::i;:::-;10224:117;10365:78;10435:7;10426:6;10415:9;10411:22;10365:78;:::i;:::-;10355:88;;10150:303;10520:3;10509:9;10505:19;10492:33;10552:18;10544:6;10541:30;10538:117;;;10574:79;;:::i;:::-;10538:117;10679:78;10749:7;10740:6;10729:9;10725:22;10679:78;:::i;:::-;10669:88;;10463:304;9023:1751;;;;;;;;:::o;10780:468::-;10845:6;10853;10902:2;10890:9;10881:7;10877:23;10873:32;10870:119;;;10908:79;;:::i;:::-;10870:119;11028:1;11053:53;11098:7;11089:6;11078:9;11074:22;11053:53;:::i;:::-;11043:63;;10999:117;11155:2;11181:50;11223:7;11214:6;11203:9;11199:22;11181:50;:::i;:::-;11171:60;;11126:115;10780:468;;;;;:::o;11254:474::-;11322:6;11330;11379:2;11367:9;11358:7;11354:23;11350:32;11347:119;;;11385:79;;:::i;:::-;11347:119;11505:1;11530:53;11575:7;11566:6;11555:9;11551:22;11530:53;:::i;:::-;11520:63;;11476:117;11632:2;11658:53;11703:7;11694:6;11683:9;11679:22;11658:53;:::i;:::-;11648:63;;11603:118;11254:474;;;;;:::o;11734:619::-;11811:6;11819;11827;11876:2;11864:9;11855:7;11851:23;11847:32;11844:119;;;11882:79;;:::i;:::-;11844:119;12002:1;12027:53;12072:7;12063:6;12052:9;12048:22;12027:53;:::i;:::-;12017:63;;11973:117;12129:2;12155:53;12200:7;12191:6;12180:9;12176:22;12155:53;:::i;:::-;12145:63;;12100:118;12257:2;12283:53;12328:7;12319:6;12308:9;12304:22;12283:53;:::i;:::-;12273:63;;12228:118;11734:619;;;;;:::o;12359:894::-;12477:6;12485;12534:2;12522:9;12513:7;12509:23;12505:32;12502:119;;;12540:79;;:::i;:::-;12502:119;12688:1;12677:9;12673:17;12660:31;12718:18;12710:6;12707:30;12704:117;;;12740:79;;:::i;:::-;12704:117;12845:78;12915:7;12906:6;12895:9;12891:22;12845:78;:::i;:::-;12835:88;;12631:302;13000:2;12989:9;12985:18;12972:32;13031:18;13023:6;13020:30;13017:117;;;13053:79;;:::i;:::-;13017:117;13158:78;13228:7;13219:6;13208:9;13204:22;13158:78;:::i;:::-;13148:88;;12943:303;12359:894;;;;;:::o;13259:::-;13377:6;13385;13434:2;13422:9;13413:7;13409:23;13405:32;13402:119;;;13440:79;;:::i;:::-;13402:119;13588:1;13577:9;13573:17;13560:31;13618:18;13610:6;13607:30;13604:117;;;13640:79;;:::i;:::-;13604:117;13745:78;13815:7;13806:6;13795:9;13791:22;13745:78;:::i;:::-;13735:88;;13531:302;13900:2;13889:9;13885:18;13872:32;13931:18;13923:6;13920:30;13917:117;;;13953:79;;:::i;:::-;13917:117;14058:78;14128:7;14119:6;14108:9;14104:22;14058:78;:::i;:::-;14048:88;;13843:303;13259:894;;;;;:::o;14159:327::-;14217:6;14266:2;14254:9;14245:7;14241:23;14237:32;14234:119;;;14272:79;;:::i;:::-;14234:119;14392:1;14417:52;14461:7;14452:6;14441:9;14437:22;14417:52;:::i;:::-;14407:62;;14363:116;14159:327;;;;:::o;14492:349::-;14561:6;14610:2;14598:9;14589:7;14585:23;14581:32;14578:119;;;14616:79;;:::i;:::-;14578:119;14736:1;14761:63;14816:7;14807:6;14796:9;14792:22;14761:63;:::i;:::-;14751:73;;14707:127;14492:349;;;;:::o;14847:329::-;14906:6;14955:2;14943:9;14934:7;14930:23;14926:32;14923:119;;;14961:79;;:::i;:::-;14923:119;15081:1;15106:53;15151:7;15142:6;15131:9;15127:22;15106:53;:::i;:::-;15096:63;;15052:117;14847:329;;;;:::o;15182:654::-;15260:6;15268;15317:2;15305:9;15296:7;15292:23;15288:32;15285:119;;;15323:79;;:::i;:::-;15285:119;15443:1;15468:53;15513:7;15504:6;15493:9;15489:22;15468:53;:::i;:::-;15458:63;;15414:117;15598:2;15587:9;15583:18;15570:32;15629:18;15621:6;15618:30;15615:117;;;15651:79;;:::i;:::-;15615:117;15756:63;15811:7;15802:6;15791:9;15787:22;15756:63;:::i;:::-;15746:73;;15541:288;15182:654;;;;;:::o;15842:474::-;15910:6;15918;15967:2;15955:9;15946:7;15942:23;15938:32;15935:119;;;15973:79;;:::i;:::-;15935:119;16093:1;16118:53;16163:7;16154:6;16143:9;16139:22;16118:53;:::i;:::-;16108:63;;16064:117;16220:2;16246:53;16291:7;16282:6;16271:9;16267:22;16246:53;:::i;:::-;16236:63;;16191:118;15842:474;;;;;:::o;16322:179::-;16391:10;16412:46;16454:3;16446:6;16412:46;:::i;:::-;16490:4;16485:3;16481:14;16467:28;;16322:179;;;;:::o;16507:118::-;16594:24;16612:5;16594:24;:::i;:::-;16589:3;16582:37;16507:118;;:::o;16661:732::-;16780:3;16809:54;16857:5;16809:54;:::i;:::-;16879:86;16958:6;16953:3;16879:86;:::i;:::-;16872:93;;16989:56;17039:5;16989:56;:::i;:::-;17068:7;17099:1;17084:284;17109:6;17106:1;17103:13;17084:284;;;17185:6;17179:13;17212:63;17271:3;17256:13;17212:63;:::i;:::-;17205:70;;17298:60;17351:6;17298:60;:::i;:::-;17288:70;;17144:224;17131:1;17128;17124:9;17119:14;;17084:284;;;17088:14;17384:3;17377:10;;16785:608;;;16661:732;;;;:::o;17399:109::-;17480:21;17495:5;17480:21;:::i;:::-;17475:3;17468:34;17399:109;;:::o;17514:360::-;17600:3;17628:38;17660:5;17628:38;:::i;:::-;17682:70;17745:6;17740:3;17682:70;:::i;:::-;17675:77;;17761:52;17806:6;17801:3;17794:4;17787:5;17783:16;17761:52;:::i;:::-;17838:29;17860:6;17838:29;:::i;:::-;17833:3;17829:39;17822:46;;17604:270;17514:360;;;;:::o;17880:364::-;17968:3;17996:39;18029:5;17996:39;:::i;:::-;18051:71;18115:6;18110:3;18051:71;:::i;:::-;18044:78;;18131:52;18176:6;18171:3;18164:4;18157:5;18153:16;18131:52;:::i;:::-;18208:29;18230:6;18208:29;:::i;:::-;18203:3;18199:39;18192:46;;17972:272;17880:364;;;;:::o;18250:366::-;18392:3;18413:67;18477:2;18472:3;18413:67;:::i;:::-;18406:74;;18489:93;18578:3;18489:93;:::i;:::-;18607:2;18602:3;18598:12;18591:19;;18250:366;;;:::o;18622:::-;18764:3;18785:67;18849:2;18844:3;18785:67;:::i;:::-;18778:74;;18861:93;18950:3;18861:93;:::i;:::-;18979:2;18974:3;18970:12;18963:19;;18622:366;;;:::o;18994:::-;19136:3;19157:67;19221:2;19216:3;19157:67;:::i;:::-;19150:74;;19233:93;19322:3;19233:93;:::i;:::-;19351:2;19346:3;19342:12;19335:19;;18994:366;;;:::o;19366:::-;19508:3;19529:67;19593:2;19588:3;19529:67;:::i;:::-;19522:74;;19605:93;19694:3;19605:93;:::i;:::-;19723:2;19718:3;19714:12;19707:19;;19366:366;;;:::o;19738:::-;19880:3;19901:67;19965:2;19960:3;19901:67;:::i;:::-;19894:74;;19977:93;20066:3;19977:93;:::i;:::-;20095:2;20090:3;20086:12;20079:19;;19738:366;;;:::o;20110:::-;20252:3;20273:67;20337:2;20332:3;20273:67;:::i;:::-;20266:74;;20349:93;20438:3;20349:93;:::i;:::-;20467:2;20462:3;20458:12;20451:19;;20110:366;;;:::o;20482:::-;20624:3;20645:67;20709:2;20704:3;20645:67;:::i;:::-;20638:74;;20721:93;20810:3;20721:93;:::i;:::-;20839:2;20834:3;20830:12;20823:19;;20482:366;;;:::o;20854:::-;20996:3;21017:67;21081:2;21076:3;21017:67;:::i;:::-;21010:74;;21093:93;21182:3;21093:93;:::i;:::-;21211:2;21206:3;21202:12;21195:19;;20854:366;;;:::o;21226:::-;21368:3;21389:67;21453:2;21448:3;21389:67;:::i;:::-;21382:74;;21465:93;21554:3;21465:93;:::i;:::-;21583:2;21578:3;21574:12;21567:19;;21226:366;;;:::o;21598:::-;21740:3;21761:67;21825:2;21820:3;21761:67;:::i;:::-;21754:74;;21837:93;21926:3;21837:93;:::i;:::-;21955:2;21950:3;21946:12;21939:19;;21598:366;;;:::o;21970:::-;22112:3;22133:67;22197:2;22192:3;22133:67;:::i;:::-;22126:74;;22209:93;22298:3;22209:93;:::i;:::-;22327:2;22322:3;22318:12;22311:19;;21970:366;;;:::o;22342:::-;22484:3;22505:67;22569:2;22564:3;22505:67;:::i;:::-;22498:74;;22581:93;22670:3;22581:93;:::i;:::-;22699:2;22694:3;22690:12;22683:19;;22342:366;;;:::o;22714:::-;22856:3;22877:67;22941:2;22936:3;22877:67;:::i;:::-;22870:74;;22953:93;23042:3;22953:93;:::i;:::-;23071:2;23066:3;23062:12;23055:19;;22714:366;;;:::o;23086:::-;23228:3;23249:67;23313:2;23308:3;23249:67;:::i;:::-;23242:74;;23325:93;23414:3;23325:93;:::i;:::-;23443:2;23438:3;23434:12;23427:19;;23086:366;;;:::o;23458:::-;23600:3;23621:67;23685:2;23680:3;23621:67;:::i;:::-;23614:74;;23697:93;23786:3;23697:93;:::i;:::-;23815:2;23810:3;23806:12;23799:19;;23458:366;;;:::o;23830:108::-;23907:24;23925:5;23907:24;:::i;:::-;23902:3;23895:37;23830:108;;:::o;23944:118::-;24031:24;24049:5;24031:24;:::i;:::-;24026:3;24019:37;23944:118;;:::o;24068:222::-;24161:4;24199:2;24188:9;24184:18;24176:26;;24212:71;24280:1;24269:9;24265:17;24256:6;24212:71;:::i;:::-;24068:222;;;;:::o;24296:1053::-;24619:4;24657:3;24646:9;24642:19;24634:27;;24671:71;24739:1;24728:9;24724:17;24715:6;24671:71;:::i;:::-;24752:72;24820:2;24809:9;24805:18;24796:6;24752:72;:::i;:::-;24871:9;24865:4;24861:20;24856:2;24845:9;24841:18;24834:48;24899:108;25002:4;24993:6;24899:108;:::i;:::-;24891:116;;25054:9;25048:4;25044:20;25039:2;25028:9;25024:18;25017:48;25082:108;25185:4;25176:6;25082:108;:::i;:::-;25074:116;;25238:9;25232:4;25228:20;25222:3;25211:9;25207:19;25200:49;25266:76;25337:4;25328:6;25266:76;:::i;:::-;25258:84;;24296:1053;;;;;;;;:::o;25355:751::-;25578:4;25616:3;25605:9;25601:19;25593:27;;25630:71;25698:1;25687:9;25683:17;25674:6;25630:71;:::i;:::-;25711:72;25779:2;25768:9;25764:18;25755:6;25711:72;:::i;:::-;25793;25861:2;25850:9;25846:18;25837:6;25793:72;:::i;:::-;25875;25943:2;25932:9;25928:18;25919:6;25875:72;:::i;:::-;25995:9;25989:4;25985:20;25979:3;25968:9;25964:19;25957:49;26023:76;26094:4;26085:6;26023:76;:::i;:::-;26015:84;;25355:751;;;;;;;;:::o;26112:373::-;26255:4;26293:2;26282:9;26278:18;26270:26;;26342:9;26336:4;26332:20;26328:1;26317:9;26313:17;26306:47;26370:108;26473:4;26464:6;26370:108;:::i;:::-;26362:116;;26112:373;;;;:::o;26491:634::-;26712:4;26750:2;26739:9;26735:18;26727:26;;26799:9;26793:4;26789:20;26785:1;26774:9;26770:17;26763:47;26827:108;26930:4;26921:6;26827:108;:::i;:::-;26819:116;;26982:9;26976:4;26972:20;26967:2;26956:9;26952:18;26945:48;27010:108;27113:4;27104:6;27010:108;:::i;:::-;27002:116;;26491:634;;;;;:::o;27131:210::-;27218:4;27256:2;27245:9;27241:18;27233:26;;27269:65;27331:1;27320:9;27316:17;27307:6;27269:65;:::i;:::-;27131:210;;;;:::o;27347:313::-;27460:4;27498:2;27487:9;27483:18;27475:26;;27547:9;27541:4;27537:20;27533:1;27522:9;27518:17;27511:47;27575:78;27648:4;27639:6;27575:78;:::i;:::-;27567:86;;27347:313;;;;:::o;27666:419::-;27832:4;27870:2;27859:9;27855:18;27847:26;;27919:9;27913:4;27909:20;27905:1;27894:9;27890:17;27883:47;27947:131;28073:4;27947:131;:::i;:::-;27939:139;;27666:419;;;:::o;28091:::-;28257:4;28295:2;28284:9;28280:18;28272:26;;28344:9;28338:4;28334:20;28330:1;28319:9;28315:17;28308:47;28372:131;28498:4;28372:131;:::i;:::-;28364:139;;28091:419;;;:::o;28516:::-;28682:4;28720:2;28709:9;28705:18;28697:26;;28769:9;28763:4;28759:20;28755:1;28744:9;28740:17;28733:47;28797:131;28923:4;28797:131;:::i;:::-;28789:139;;28516:419;;;:::o;28941:::-;29107:4;29145:2;29134:9;29130:18;29122:26;;29194:9;29188:4;29184:20;29180:1;29169:9;29165:17;29158:47;29222:131;29348:4;29222:131;:::i;:::-;29214:139;;28941:419;;;:::o;29366:::-;29532:4;29570:2;29559:9;29555:18;29547:26;;29619:9;29613:4;29609:20;29605:1;29594:9;29590:17;29583:47;29647:131;29773:4;29647:131;:::i;:::-;29639:139;;29366:419;;;:::o;29791:::-;29957:4;29995:2;29984:9;29980:18;29972:26;;30044:9;30038:4;30034:20;30030:1;30019:9;30015:17;30008:47;30072:131;30198:4;30072:131;:::i;:::-;30064:139;;29791:419;;;:::o;30216:::-;30382:4;30420:2;30409:9;30405:18;30397:26;;30469:9;30463:4;30459:20;30455:1;30444:9;30440:17;30433:47;30497:131;30623:4;30497:131;:::i;:::-;30489:139;;30216:419;;;:::o;30641:::-;30807:4;30845:2;30834:9;30830:18;30822:26;;30894:9;30888:4;30884:20;30880:1;30869:9;30865:17;30858:47;30922:131;31048:4;30922:131;:::i;:::-;30914:139;;30641:419;;;:::o;31066:::-;31232:4;31270:2;31259:9;31255:18;31247:26;;31319:9;31313:4;31309:20;31305:1;31294:9;31290:17;31283:47;31347:131;31473:4;31347:131;:::i;:::-;31339:139;;31066:419;;;:::o;31491:::-;31657:4;31695:2;31684:9;31680:18;31672:26;;31744:9;31738:4;31734:20;31730:1;31719:9;31715:17;31708:47;31772:131;31898:4;31772:131;:::i;:::-;31764:139;;31491:419;;;:::o;31916:::-;32082:4;32120:2;32109:9;32105:18;32097:26;;32169:9;32163:4;32159:20;32155:1;32144:9;32140:17;32133:47;32197:131;32323:4;32197:131;:::i;:::-;32189:139;;31916:419;;;:::o;32341:::-;32507:4;32545:2;32534:9;32530:18;32522:26;;32594:9;32588:4;32584:20;32580:1;32569:9;32565:17;32558:47;32622:131;32748:4;32622:131;:::i;:::-;32614:139;;32341:419;;;:::o;32766:::-;32932:4;32970:2;32959:9;32955:18;32947:26;;33019:9;33013:4;33009:20;33005:1;32994:9;32990:17;32983:47;33047:131;33173:4;33047:131;:::i;:::-;33039:139;;32766:419;;;:::o;33191:::-;33357:4;33395:2;33384:9;33380:18;33372:26;;33444:9;33438:4;33434:20;33430:1;33419:9;33415:17;33408:47;33472:131;33598:4;33472:131;:::i;:::-;33464:139;;33191:419;;;:::o;33616:::-;33782:4;33820:2;33809:9;33805:18;33797:26;;33869:9;33863:4;33859:20;33855:1;33844:9;33840:17;33833:47;33897:131;34023:4;33897:131;:::i;:::-;33889:139;;33616:419;;;:::o;34041:222::-;34134:4;34172:2;34161:9;34157:18;34149:26;;34185:71;34253:1;34242:9;34238:17;34229:6;34185:71;:::i;:::-;34041:222;;;;:::o;34269:332::-;34390:4;34428:2;34417:9;34413:18;34405:26;;34441:71;34509:1;34498:9;34494:17;34485:6;34441:71;:::i;:::-;34522:72;34590:2;34579:9;34575:18;34566:6;34522:72;:::i;:::-;34269:332;;;;;:::o;34607:129::-;34641:6;34668:20;;:::i;:::-;34658:30;;34697:33;34725:4;34717:6;34697:33;:::i;:::-;34607:129;;;:::o;34742:75::-;34775:6;34808:2;34802:9;34792:19;;34742:75;:::o;34823:311::-;34900:4;34990:18;34982:6;34979:30;34976:56;;;35012:18;;:::i;:::-;34976:56;35062:4;35054:6;35050:17;35042:25;;35122:4;35116;35112:15;35104:23;;34823:311;;;:::o;35140:::-;35217:4;35307:18;35299:6;35296:30;35293:56;;;35329:18;;:::i;:::-;35293:56;35379:4;35371:6;35367:17;35359:25;;35439:4;35433;35429:15;35421:23;;35140:311;;;:::o;35457:307::-;35518:4;35608:18;35600:6;35597:30;35594:56;;;35630:18;;:::i;:::-;35594:56;35668:29;35690:6;35668:29;:::i;:::-;35660:37;;35752:4;35746;35742:15;35734:23;;35457:307;;;:::o;35770:308::-;35832:4;35922:18;35914:6;35911:30;35908:56;;;35944:18;;:::i;:::-;35908:56;35982:29;36004:6;35982:29;:::i;:::-;35974:37;;36066:4;36060;36056:15;36048:23;;35770:308;;;:::o;36084:132::-;36151:4;36174:3;36166:11;;36204:4;36199:3;36195:14;36187:22;;36084:132;;;:::o;36222:114::-;36289:6;36323:5;36317:12;36307:22;;36222:114;;;:::o;36342:98::-;36393:6;36427:5;36421:12;36411:22;;36342:98;;;:::o;36446:99::-;36498:6;36532:5;36526:12;36516:22;;36446:99;;;:::o;36551:113::-;36621:4;36653;36648:3;36644:14;36636:22;;36551:113;;;:::o;36670:184::-;36769:11;36803:6;36798:3;36791:19;36843:4;36838:3;36834:14;36819:29;;36670:184;;;;:::o;36860:168::-;36943:11;36977:6;36972:3;36965:19;37017:4;37012:3;37008:14;36993:29;;36860:168;;;;:::o;37034:169::-;37118:11;37152:6;37147:3;37140:19;37192:4;37187:3;37183:14;37168:29;;37034:169;;;;:::o;37209:305::-;37249:3;37268:20;37286:1;37268:20;:::i;:::-;37263:25;;37302:20;37320:1;37302:20;:::i;:::-;37297:25;;37456:1;37388:66;37384:74;37381:1;37378:81;37375:107;;;37462:18;;:::i;:::-;37375:107;37506:1;37503;37499:9;37492:16;;37209:305;;;;:::o;37520:96::-;37557:7;37586:24;37604:5;37586:24;:::i;:::-;37575:35;;37520:96;;;:::o;37622:90::-;37656:7;37699:5;37692:13;37685:21;37674:32;;37622:90;;;:::o;37718:149::-;37754:7;37794:66;37787:5;37783:78;37772:89;;37718:149;;;:::o;37873:126::-;37910:7;37950:42;37943:5;37939:54;37928:65;;37873:126;;;:::o;38005:77::-;38042:7;38071:5;38060:16;;38005:77;;;:::o;38088:154::-;38172:6;38167:3;38162;38149:30;38234:1;38225:6;38220:3;38216:16;38209:27;38088:154;;;:::o;38248:307::-;38316:1;38326:113;38340:6;38337:1;38334:13;38326:113;;;38425:1;38420:3;38416:11;38410:18;38406:1;38401:3;38397:11;38390:39;38362:2;38359:1;38355:10;38350:15;;38326:113;;;38457:6;38454:1;38451:13;38448:101;;;38537:1;38528:6;38523:3;38519:16;38512:27;38448:101;38297:258;38248:307;;;:::o;38561:320::-;38605:6;38642:1;38636:4;38632:12;38622:22;;38689:1;38683:4;38679:12;38710:18;38700:81;;38766:4;38758:6;38754:17;38744:27;;38700:81;38828:2;38820:6;38817:14;38797:18;38794:38;38791:84;;;38847:18;;:::i;:::-;38791:84;38612:269;38561:320;;;:::o;38887:281::-;38970:27;38992:4;38970:27;:::i;:::-;38962:6;38958:40;39100:6;39088:10;39085:22;39064:18;39052:10;39049:34;39046:62;39043:88;;;39111:18;;:::i;:::-;39043:88;39151:10;39147:2;39140:22;38930:238;38887:281;;:::o;39174:233::-;39213:3;39236:24;39254:5;39236:24;:::i;:::-;39227:33;;39282:66;39275:5;39272:77;39269:103;;;39352:18;;:::i;:::-;39269:103;39399:1;39392:5;39388:13;39381:20;;39174:233;;;:::o;39413:180::-;39461:77;39458:1;39451:88;39558:4;39555:1;39548:15;39582:4;39579:1;39572:15;39599:180;39647:77;39644:1;39637:88;39744:4;39741:1;39734:15;39768:4;39765:1;39758:15;39785:180;39833:77;39830:1;39823:88;39930:4;39927:1;39920:15;39954:4;39951:1;39944:15;39971:180;40019:77;40016:1;40009:88;40116:4;40113:1;40106:15;40140:4;40137:1;40130:15;40157:183;40192:3;40230:1;40212:16;40209:23;40206:128;;;40268:1;40265;40262;40247:23;40290:34;40321:1;40315:8;40290:34;:::i;:::-;40283:41;;40206:128;40157:183;:::o;40346:117::-;40455:1;40452;40445:12;40469:117;40578:1;40575;40568:12;40592:117;40701:1;40698;40691:12;40715:117;40824:1;40821;40814:12;40838:117;40947:1;40944;40937:12;40961:102;41002:6;41053:2;41049:7;41044:2;41037:5;41033:14;41029:28;41019:38;;40961:102;;;:::o;41069:106::-;41113:8;41162:5;41157:3;41153:15;41132:36;;41069:106;;;:::o;41181:239::-;41321:34;41317:1;41309:6;41305:14;41298:58;41390:22;41385:2;41377:6;41373:15;41366:47;41181:239;:::o;41426:227::-;41566:34;41562:1;41554:6;41550:14;41543:58;41635:10;41630:2;41622:6;41618:15;41611:35;41426:227;:::o;41659:230::-;41799:34;41795:1;41787:6;41783:14;41776:58;41868:13;41863:2;41855:6;41851:15;41844:38;41659:230;:::o;41895:225::-;42035:34;42031:1;42023:6;42019:14;42012:58;42104:8;42099:2;42091:6;42087:15;42080:33;41895:225;:::o;42126:223::-;42266:34;42262:1;42254:6;42250:14;42243:58;42335:6;42330:2;42322:6;42318:15;42311:31;42126:223;:::o;42355:228::-;42495:34;42491:1;42483:6;42479:14;42472:58;42564:11;42559:2;42551:6;42547:15;42540:36;42355:228;:::o;42589:224::-;42729:34;42725:1;42717:6;42713:14;42706:58;42798:7;42793:2;42785:6;42781:15;42774:32;42589:224;:::o;42819:237::-;42959:34;42955:1;42947:6;42943:14;42936:58;43028:20;43023:2;43015:6;43011:15;43004:45;42819:237;:::o;43062:222::-;43202:34;43198:1;43190:6;43186:14;43179:58;43271:5;43266:2;43258:6;43254:15;43247:30;43062:222;:::o;43290:229::-;43430:34;43426:1;43418:6;43414:14;43407:58;43499:12;43494:2;43486:6;43482:15;43475:37;43290:229;:::o;43525:182::-;43665:34;43661:1;43653:6;43649:14;43642:58;43525:182;:::o;43713:228::-;43853:34;43849:1;43841:6;43837:14;43830:58;43922:11;43917:2;43909:6;43905:15;43898:36;43713:228;:::o;43947:::-;44087:34;44083:1;44075:6;44071:14;44064:58;44156:11;44151:2;44143:6;44139:15;44132:36;43947:228;:::o;44181:227::-;44321:34;44317:1;44309:6;44305:14;44298:58;44390:10;44385:2;44377:6;44373:15;44366:35;44181:227;:::o;44414:220::-;44554:34;44550:1;44542:6;44538:14;44531:58;44623:3;44618:2;44610:6;44606:15;44599:28;44414:220;:::o;44640:711::-;44679:3;44717:4;44699:16;44696:26;44693:39;;;44725:5;;44693:39;44754:20;;:::i;:::-;44829:1;44811:16;44807:24;44804:1;44798:4;44783:49;44862:4;44856:11;44961:16;44954:4;44946:6;44942:17;44939:39;44906:18;44898:6;44895:30;44879:113;44876:146;;;45007:5;;;;44876:146;45053:6;45047:4;45043:17;45089:3;45083:10;45116:18;45108:6;45105:30;45102:43;;;45138:5;;;;;;45102:43;45186:6;45179:4;45174:3;45170:14;45166:27;45245:1;45227:16;45223:24;45217:4;45213:35;45208:3;45205:44;45202:57;;;45252:5;;;;;;;45202:57;45269;45317:6;45311:4;45307:17;45299:6;45295:30;45289:4;45269:57;:::i;:::-;45342:3;45335:10;;44683:668;;;;;44640:711;;:::o;45357:122::-;45430:24;45448:5;45430:24;:::i;:::-;45423:5;45420:35;45410:63;;45469:1;45466;45459:12;45410:63;45357:122;:::o;45485:116::-;45555:21;45570:5;45555:21;:::i;:::-;45548:5;45545:32;45535:60;;45591:1;45588;45581:12;45535:60;45485:116;:::o;45607:120::-;45679:23;45696:5;45679:23;:::i;:::-;45672:5;45669:34;45659:62;;45717:1;45714;45707:12;45659:62;45607:120;:::o;45733:122::-;45806:24;45824:5;45806:24;:::i;:::-;45799:5;45796:35;45786:63;;45845:1;45842;45835:12;45786:63;45733:122;:::o

Swarm Source

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