ETH Price: $3,274.54 (-3.98%)
Gas: 9 Gwei

Token

SODA (SODA)
 

Overview

Max Total Supply

1,779 SODA

Holders

574

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SODA
0x2303fd39e04cf4d6471df5ee945bd0e2cfb6c7a2
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:
Soda

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 2021-09-07
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin\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: @openzeppelin\contracts\token\ERC721\IERC721.sol

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: @openzeppelin\contracts\token\ERC721\IERC721Receiver.sol

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin\contracts\token\ERC721\extensions\IERC721Metadata.sol

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: @openzeppelin\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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin\contracts\utils\Strings.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;


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

// File: @openzeppelin\contracts\token\ERC721\ERC721.sol

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: @openzeppelin\contracts\token\ERC721\extensions\IERC721Enumerable.sol

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin\contracts\token\ERC721\extensions\ERC721Enumerable.sol

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: Soda.sol

pragma solidity ^0.8.0;

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

contract Soda is ERC721Enumerable, Ownable {
  
  string public constant PROVENANCE_HASH = "db1a85b482e5f69ab4457a01a025fe2ba65a02ee73d552e59b6ba390b6d9daf1";

  uint256 public constant MAX_SUPPLY = 9669;
  uint256 public constant RESERVED = 35;
  uint256 public constant FANBOI = 22;

  uint256 public price = 66700000000000000;
  bool public saleIsActive = false;
  bool public uriIsFrozen = false;

  bool private _canFreezeUri = false;
  string private _baseTokenURI;

  mapping (uint => uint) public distributionIndex;

  constructor() ERC721("SODA", "SODA") {
    _setBaseURI("https://soda.blob.core.windows.net/metadata/");
    
    for (uint i = 0; i < RESERVED; i++) {
      _mintSoda(msg.sender, i >= FANBOI);
    }
  }

  function withdraw() public onlyOwner {
    uint256 balance = address(this).balance;
    payable(msg.sender).transfer(balance);
  }

  // OOGA change base uri to ipfs after all sodas get minted
  function setBaseURI(string memory baseURI) public onlyOwner {
    if(!uriIsFrozen){
      _canFreezeUri = true;
      _setBaseURI(baseURI);
    }
  }

  function freezeBaseURI() public onlyOwner {
    if(_canFreezeUri) {
      uriIsFrozen = true;
    }
  }

  function mint() public payable {
    require(saleIsActive, "Sale is not active.");
    require(totalSupply() < MAX_SUPPLY, "Exceeds the maximum supply.");
    require(price <= msg.value, "Not enough Ether.");

    _mintSoda(msg.sender, true);
  }

  function mintSixPack() public payable {
    require(saleIsActive, "Sale is not active.");
    require(totalSupply() + 6 <= MAX_SUPPLY, "Exceeds the maximum supply.");
    require(price * 6 <= msg.value, "Not enough Ether.");

    for (uint i = 0; i < 6; i++) {
      _mintSoda(msg.sender, true);
    }
  }

  function walletOfOwner(address _owner) public view returns(uint256[] memory) {
    uint256 tokenCount = balanceOf(_owner);

    uint256[] memory tokensId = new uint256[](tokenCount);
    for(uint256 i; i < tokenCount; i++){
      tokensId[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokensId;
  }

  function giveaway(address nftOwner) public onlyOwner() {
    require(totalSupply() < MAX_SUPPLY, "Exceeds max. supply.");

    _mintSoda(nftOwner, true);
  }

  function toggleSale() public onlyOwner {
    saleIsActive = !saleIsActive;
  }

  // OOGA save you if ETH go wrong, function adjust price, upkeep alpha
  function setPrice(uint256 newPrice) public onlyOwner() {
    price = newPrice;
  }

  function _setBaseURI(string memory uri) private {
    _baseTokenURI = uri;
  }

  // OOGA distributes SODAs randomly by assigning a 'distribution index' to each token
  // The distribution index denotes an index of element from a set of remaining SODAs at the time of minting
  // The distribution index is randomly selected during minting, and conforms to a range [0, number of remaining SODAs - 1]
  // example:
  // there are 4 SODAs with ids: 0, 1, 2, 3
  // the first token (0) receives distribution index 2, this results in assignment of: token_0 <- soda_2
  // remaining sodas are: 0, 1, 3
  // second token (1) receives distribution index 0, this results in assignment of: token_1 <- soda_0
  // remaining sodas are: 1, 3
  // third token (2) receives distribution index 1, this results in assignment of: token_2 <- soda_3
  // remaining sodas are: 1
  // fourth token (3) receives distribution index 0, this results in assignment of : token_3 <- soda_1
  function _mintSoda(address nftOwner, bool isRandom) private {
    uint index = totalSupply();
    if (isRandom) {
      distributionIndex[index] = _getDistributionIndex(index);
    }
    else {
      distributionIndex[index] = 0;
    }
    _safeMint(nftOwner, index);
  }

  function _getDistributionIndex(uint index) private view returns (uint) {
    uint magicNumber = uint(keccak256(abi.encodePacked(index, block.timestamp)));
    magicNumber = magicNumber % (MAX_SUPPLY - index);
    return magicNumber;
  }

  function _baseURI() internal view virtual override returns (string memory) {
    return _baseTokenURI;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FANBOI","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"distributionIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freezeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"nftOwner","type":"address"}],"name":"giveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintSixPack","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","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":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriIsFrozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266ecf74bee84c000600b556000600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff0219169083151502179055506000600c60026101000a81548160ff0219169083151502179055503480156200006d57600080fd5b506040518060400160405280600481526020017f534f4441000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f534f4441000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000f292919062000d4c565b5080600190805190602001906200010b92919062000d4c565b5050506200012e620001226200019860201b60201c565b620001a060201b60201c565b620001586040518060600160405280602c81526020016200560c602c91396200026660201b60201c565b60005b602381101562000191576200017b3360168310156200028260201b60201c565b8080620001889062001206565b9150506200015b565b50620014a1565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600d90805190602001906200027e92919062000d4c565b5050565b600062000294620002fc60201b60201c565b90508115620002cb57620002ae816200030960201b60201c565b600e600083815260200190815260200160002081905550620002e5565b6000600e6000838152602001908152602001600020819055505b620002f783826200036460201b60201c565b505050565b6000600880549050905090565b60008082426040516020016200032192919062000f5f565b6040516020818303038152906040528051906020012060001c9050826125c56200034c9190620010f5565b816200035991906200125e565b905080915050919050565b620003868282604051806020016040528060008152506200038a60201b60201c565b5050565b6200039c8383620003f860201b60201c565b620003b16000848484620005de60201b60201c565b620003f3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003ea9062000fe3565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200046b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004629062001049565b60405180910390fd5b6200047c816200079860201b60201c565b15620004bf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004b69062001005565b60405180910390fd5b620004d3600083836200080460201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000525919062001098565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006200060c8473ffffffffffffffffffffffffffffffffffffffff166200094b60201b620018ce1760201c565b156200078b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200063e6200019860201b60201c565b8786866040518563ffffffff1660e01b815260040162000662949392919062000f8f565b602060405180830381600087803b1580156200067d57600080fd5b505af1925050508015620006b157506040513d601f19601f82011682018060405250810190620006ae919062000e13565b60015b6200073a573d8060008114620006e4576040519150601f19603f3d011682016040523d82523d6000602084013e620006e9565b606091505b5060008151141562000732576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007299062000fe3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000790565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6200081c8383836200095e60201b620018e11760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620008695762000863816200096360201b60201c565b620008b1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614620008b057620008af8382620009ac60201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620008fe57620008f88162000b2960201b60201c565b62000946565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620009455762000944828262000c0560201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001620009c68462000c9160201b620010261760201c565b620009d29190620010f5565b905060006007600084815260200190815260200160002054905081811462000ab8576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000b3f9190620010f5565b905060006009600084815260200190815260200160002054905060006008838154811062000b725762000b7162001352565b5b90600052602060002001549050806008838154811062000b975762000b9662001352565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000be95762000be862001323565b5b6001900381819060005260206000200160009055905550505050565b600062000c1d8362000c9160201b620010261760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000d05576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000cfc9062001027565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000d5a90620011d0565b90600052602060002090601f01602090048101928262000d7e576000855562000dca565b82601f1062000d9957805160ff191683800117855562000dca565b8280016001018555821562000dca579182015b8281111562000dc957825182559160200191906001019062000dac565b5b50905062000dd9919062000ddd565b5090565b5b8082111562000df857600081600090555060010162000dde565b5090565b60008151905062000e0d8162001487565b92915050565b60006020828403121562000e2c5762000e2b62001381565b5b600062000e3c8482850162000dfc565b91505092915050565b62000e508162001130565b82525050565b600062000e63826200106b565b62000e6f818562001076565b935062000e818185602086016200119a565b62000e8c8162001386565b840191505092915050565b600062000ea660328362001087565b915062000eb38262001397565b604082019050919050565b600062000ecd601c8362001087565b915062000eda82620013e6565b602082019050919050565b600062000ef4602a8362001087565b915062000f01826200140f565b604082019050919050565b600062000f1b60208362001087565b915062000f28826200145e565b602082019050919050565b62000f3e8162001190565b82525050565b62000f5962000f538262001190565b62001254565b82525050565b600062000f6d828562000f44565b60208201915062000f7f828462000f44565b6020820191508190509392505050565b600060808201905062000fa6600083018762000e45565b62000fb5602083018662000e45565b62000fc4604083018562000f33565b818103606083015262000fd8818462000e56565b905095945050505050565b6000602082019050818103600083015262000ffe8162000e97565b9050919050565b60006020820190508181036000830152620010208162000ebe565b9050919050565b60006020820190508181036000830152620010428162000ee5565b9050919050565b60006020820190508181036000830152620010648162000f0c565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000620010a58262001190565b9150620010b28362001190565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620010ea57620010e962001296565b5b828201905092915050565b6000620011028262001190565b91506200110f8362001190565b92508282101562001125576200112462001296565b5b828203905092915050565b60006200113d8262001170565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620011ba5780820151818401526020810190506200119d565b83811115620011ca576000848401525b50505050565b60006002820490506001821680620011e957607f821691505b602082108114156200120057620011ff620012f4565b5b50919050565b6000620012138262001190565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562001249576200124862001296565b5b600182019050919050565b6000819050919050565b60006200126b8262001190565b9150620012788362001190565b9250826200128b576200128a620012c5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b620014928162001144565b81146200149e57600080fd5b50565b61415b80620014b16000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063b88d4fde116100a0578063e985e9c51161006f578063e985e9c514610712578063ea86be8d1461074f578063eb8d244414610759578063f09850de14610784578063ff1b6556146107af576101f9565b8063b88d4fde1461066c578063c87b56dd14610695578063dfd233dd146106d2578063e7bc8208146106fb576101f9565b806395d89b41116100dc57806395d89b41146105c2578063a035b1fe146105ed578063a22cb46514610618578063aa592f2514610641576101f9565b806370a082311461051a5780637d8966e4146105575780638da5cb5b1461056e57806391b7f5ed14610599576101f9565b806332cb6b0c11610190578063438b63001161015f578063438b6300146103fd5780634f6ccce71461043a57806355f804b3146104775780636352211e146104a0578063709fa8f7146104dd576101f9565b806332cb6b0c146103675780633ccfd60b146103925780633dc464d6146103a957806342842e0e146103d4576101f9565b80631249c58b116101cc5780631249c58b146102cc57806318160ddd146102d657806323b872dd146103015780632f745c591461032a576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612d5e565b6107da565b6040516102329190613352565b60405180910390f35b34801561024757600080fd5b50610250610854565b60405161025d919061336d565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612e01565b6108e6565b60405161029a91906132c9565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190612d1e565b61096b565b005b6102d4610a83565b005b3480156102e257600080fd5b506102eb610b6f565b6040516102f8919061362f565b60405180910390f35b34801561030d57600080fd5b5061032860048036038101906103239190612c08565b610b7c565b005b34801561033657600080fd5b50610351600480360381019061034c9190612d1e565b610bdc565b60405161035e919061362f565b60405180910390f35b34801561037357600080fd5b5061037c610c81565b604051610389919061362f565b60405180910390f35b34801561039e57600080fd5b506103a7610c87565b005b3480156103b557600080fd5b506103be610d52565b6040516103cb9190613352565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190612c08565b610d65565b005b34801561040957600080fd5b50610424600480360381019061041f9190612b9b565b610d85565b6040516104319190613330565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c9190612e01565b610e33565b60405161046e919061362f565b60405180910390f35b34801561048357600080fd5b5061049e60048036038101906104999190612db8565b610ea4565b005b3480156104ac57600080fd5b506104c760048036038101906104c29190612e01565b610f5c565b6040516104d491906132c9565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff9190612e01565b61100e565b604051610511919061362f565b60405180910390f35b34801561052657600080fd5b50610541600480360381019061053c9190612b9b565b611026565b60405161054e919061362f565b60405180910390f35b34801561056357600080fd5b5061056c6110de565b005b34801561057a57600080fd5b50610583611186565b60405161059091906132c9565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb9190612e01565b6111b0565b005b3480156105ce57600080fd5b506105d7611236565b6040516105e4919061336d565b60405180910390f35b3480156105f957600080fd5b506106026112c8565b60405161060f919061362f565b60405180910390f35b34801561062457600080fd5b5061063f600480360381019061063a9190612cde565b6112ce565b005b34801561064d57600080fd5b5061065661144f565b604051610663919061362f565b60405180910390f35b34801561067857600080fd5b50610693600480360381019061068e9190612c5b565b611454565b005b3480156106a157600080fd5b506106bc60048036038101906106b79190612e01565b6114b6565b6040516106c9919061336d565b60405180910390f35b3480156106de57600080fd5b506106f960048036038101906106f49190612b9b565b61155d565b005b34801561070757600080fd5b50610710611632565b005b34801561071e57600080fd5b5061073960048036038101906107349190612bc8565b6116e1565b6040516107469190613352565b60405180910390f35b610757611775565b005b34801561076557600080fd5b5061076e61189a565b60405161077b9190613352565b60405180910390f35b34801561079057600080fd5b506107996118ad565b6040516107a6919061362f565b60405180910390f35b3480156107bb57600080fd5b506107c46118b2565b6040516107d1919061336d565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084d575061084c826118e6565b5b9050919050565b60606000805461086390613918565b80601f016020809104026020016040519081016040528092919081815260200182805461088f90613918565b80156108dc5780601f106108b1576101008083540402835291602001916108dc565b820191906000526020600020905b8154815290600101906020018083116108bf57829003601f168201915b5050505050905090565b60006108f1826119c8565b610930576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610927906134cf565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097682610f5c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109de906135cf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a06611a34565b73ffffffffffffffffffffffffffffffffffffffff161480610a355750610a3481610a2f611a34565b6116e1565b5b610a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6b9061344f565b60405180910390fd5b610a7e8383611a3c565b505050565b600c60009054906101000a900460ff16610ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac9906135af565b60405180910390fd5b6125c5610add610b6f565b10610b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b149061352f565b60405180910390fd5b34600b541115610b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b599061350f565b60405180910390fd5b610b6d336001611af5565b565b6000600880549050905090565b610b8d610b87611a34565b82611b55565b610bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc3906135ef565b60405180910390fd5b610bd7838383611c33565b505050565b6000610be783611026565b8210610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f9061338f565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6125c581565b610c8f611a34565b73ffffffffffffffffffffffffffffffffffffffff16610cad611186565b73ffffffffffffffffffffffffffffffffffffffff1614610d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfa906134ef565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d4e573d6000803e3d6000fd5b5050565b600c60019054906101000a900460ff1681565b610d8083838360405180602001604052806000815250611454565b505050565b60606000610d9283611026565b905060008167ffffffffffffffff811115610db057610daf613aea565b5b604051908082528060200260200182016040528015610dde5781602001602082028036833780820191505090505b50905060005b82811015610e2857610df68582610bdc565b828281518110610e0957610e08613abb565b5b6020026020010181815250508080610e209061397b565b915050610de4565b508092505050919050565b6000610e3d610b6f565b8210610e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e759061360f565b60405180910390fd5b60088281548110610e9257610e91613abb565b5b90600052602060002001549050919050565b610eac611a34565b73ffffffffffffffffffffffffffffffffffffffff16610eca611186565b73ffffffffffffffffffffffffffffffffffffffff1614610f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f17906134ef565b60405180910390fd5b600c60019054906101000a900460ff16610f59576001600c60026101000a81548160ff021916908315150217905550610f5881611e8f565b5b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffc9061348f565b60405180910390fd5b80915050919050565b600e6020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108e9061346f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110e6611a34565b73ffffffffffffffffffffffffffffffffffffffff16611104611186565b73ffffffffffffffffffffffffffffffffffffffff161461115a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611151906134ef565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111b8611a34565b73ffffffffffffffffffffffffffffffffffffffff166111d6611186565b73ffffffffffffffffffffffffffffffffffffffff161461122c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611223906134ef565b60405180910390fd5b80600b8190555050565b60606001805461124590613918565b80601f016020809104026020016040519081016040528092919081815260200182805461127190613918565b80156112be5780601f10611293576101008083540402835291602001916112be565b820191906000526020600020905b8154815290600101906020018083116112a157829003601f168201915b5050505050905090565b600b5481565b6112d6611a34565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611344576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133b9061340f565b60405180910390fd5b8060056000611351611a34565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113fe611a34565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114439190613352565b60405180910390a35050565b602381565b61146561145f611a34565b83611b55565b6114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b906135ef565b60405180910390fd5b6114b084848484611ea9565b50505050565b60606114c1826119c8565b611500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f79061356f565b60405180910390fd5b600061150a611f05565b9050600081511161152a5760405180602001604052806000815250611555565b8061153484611f97565b604051602001611545929190613279565b6040516020818303038152906040525b915050919050565b611565611a34565b73ffffffffffffffffffffffffffffffffffffffff16611583611186565b73ffffffffffffffffffffffffffffffffffffffff16146115d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d0906134ef565b60405180910390fd5b6125c56115e4610b6f565b10611624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161b9061358f565b60405180910390fd5b61162f816001611af5565b50565b61163a611a34565b73ffffffffffffffffffffffffffffffffffffffff16611658611186565b73ffffffffffffffffffffffffffffffffffffffff16146116ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a5906134ef565b60405180910390fd5b600c60029054906101000a900460ff16156116df576001600c60016101000a81548160ff0219169083151502179055505b565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c60009054906101000a900460ff166117c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bb906135af565b60405180910390fd5b6125c560066117d1610b6f565b6117db919061374d565b111561181c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118139061352f565b60405180910390fd5b346006600b5461182c91906137d4565b111561186d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118649061350f565b60405180910390fd5b60005b600681101561189757611884336001611af5565b808061188f9061397b565b915050611870565b50565b600c60009054906101000a900460ff1681565b601681565b6040518060600160405280604081526020016140e66040913981565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806119b157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806119c157506119c0826120f8565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611aaf83610f5c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611aff610b6f565b90508115611b2c57611b1081612162565b600e600083815260200190815260200160002081905550611b46565b6000600e6000838152602001908152602001600020819055505b611b5083826121b7565b505050565b6000611b60826119c8565b611b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b969061342f565b60405180910390fd5b6000611baa83610f5c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c1957508373ffffffffffffffffffffffffffffffffffffffff16611c01846108e6565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c2a5750611c2981856116e1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c5382610f5c565b73ffffffffffffffffffffffffffffffffffffffff1614611ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca09061354f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d10906133ef565b60405180910390fd5b611d248383836121d5565b611d2f600082611a3c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d7f919061382e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dd6919061374d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b80600d9080519060200190611ea59291906129af565b5050565b611eb4848484611c33565b611ec0848484846122e9565b611eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef6906133af565b60405180910390fd5b50505050565b6060600d8054611f1490613918565b80601f0160208091040260200160405190810160405280929190818152602001828054611f4090613918565b8015611f8d5780601f10611f6257610100808354040283529160200191611f8d565b820191906000526020600020905b815481529060010190602001808311611f7057829003601f168201915b5050505050905090565b60606000821415611fdf576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506120f3565b600082905060005b60008214612011578080611ffa9061397b565b915050600a8261200a91906137a3565b9150611fe7565b60008167ffffffffffffffff81111561202d5761202c613aea565b5b6040519080825280601f01601f19166020018201604052801561205f5781602001600182028036833780820191505090505b5090505b600085146120ec57600182612078919061382e565b9150600a8561208791906139ce565b6030612093919061374d565b60f81b8183815181106120a9576120a8613abb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120e591906137a3565b9450612063565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080824260405160200161217892919061329d565b6040516020818303038152906040528051906020012060001c9050826125c56121a1919061382e565b816121ac91906139ce565b905080915050919050565b6121d1828260405180602001604052806000815250612480565b5050565b6121e08383836118e1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122235761221e816124db565b612262565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612261576122608382612524565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122a5576122a081612691565b6122e4565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146122e3576122e28282612762565b5b5b505050565b600061230a8473ffffffffffffffffffffffffffffffffffffffff166118ce565b15612473578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612333611a34565b8786866040518563ffffffff1660e01b815260040161235594939291906132e4565b602060405180830381600087803b15801561236f57600080fd5b505af19250505080156123a057506040513d601f19601f8201168201806040525081019061239d9190612d8b565b60015b612423573d80600081146123d0576040519150601f19603f3d011682016040523d82523d6000602084013e6123d5565b606091505b5060008151141561241b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612412906133af565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612478565b600190505b949350505050565b61248a83836127e1565b61249760008484846122e9565b6124d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cd906133af565b60405180910390fd5b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161253184611026565b61253b919061382e565b9050600060076000848152602001908152602001600020549050818114612620576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506126a5919061382e565b90506000600960008481526020019081526020016000205490506000600883815481106126d5576126d4613abb565b5b9060005260206000200154905080600883815481106126f7576126f6613abb565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061274657612745613a8c565b5b6001900381819060005260206000200160009055905550505050565b600061276d83611026565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612851576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612848906134af565b60405180910390fd5b61285a816119c8565b1561289a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612891906133cf565b60405180910390fd5b6128a6600083836121d5565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128f6919061374d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546129bb90613918565b90600052602060002090601f0160209004810192826129dd5760008555612a24565b82601f106129f657805160ff1916838001178555612a24565b82800160010185558215612a24579182015b82811115612a23578251825591602001919060010190612a08565b5b509050612a319190612a35565b5090565b5b80821115612a4e576000816000905550600101612a36565b5090565b6000612a65612a608461366f565b61364a565b905082815260208101848484011115612a8157612a80613b1e565b5b612a8c8482856138d6565b509392505050565b6000612aa7612aa2846136a0565b61364a565b905082815260208101848484011115612ac357612ac2613b1e565b5b612ace8482856138d6565b509392505050565b600081359050612ae581614089565b92915050565b600081359050612afa816140a0565b92915050565b600081359050612b0f816140b7565b92915050565b600081519050612b24816140b7565b92915050565b600082601f830112612b3f57612b3e613b19565b5b8135612b4f848260208601612a52565b91505092915050565b600082601f830112612b6d57612b6c613b19565b5b8135612b7d848260208601612a94565b91505092915050565b600081359050612b95816140ce565b92915050565b600060208284031215612bb157612bb0613b28565b5b6000612bbf84828501612ad6565b91505092915050565b60008060408385031215612bdf57612bde613b28565b5b6000612bed85828601612ad6565b9250506020612bfe85828601612ad6565b9150509250929050565b600080600060608486031215612c2157612c20613b28565b5b6000612c2f86828701612ad6565b9350506020612c4086828701612ad6565b9250506040612c5186828701612b86565b9150509250925092565b60008060008060808587031215612c7557612c74613b28565b5b6000612c8387828801612ad6565b9450506020612c9487828801612ad6565b9350506040612ca587828801612b86565b925050606085013567ffffffffffffffff811115612cc657612cc5613b23565b5b612cd287828801612b2a565b91505092959194509250565b60008060408385031215612cf557612cf4613b28565b5b6000612d0385828601612ad6565b9250506020612d1485828601612aeb565b9150509250929050565b60008060408385031215612d3557612d34613b28565b5b6000612d4385828601612ad6565b9250506020612d5485828601612b86565b9150509250929050565b600060208284031215612d7457612d73613b28565b5b6000612d8284828501612b00565b91505092915050565b600060208284031215612da157612da0613b28565b5b6000612daf84828501612b15565b91505092915050565b600060208284031215612dce57612dcd613b28565b5b600082013567ffffffffffffffff811115612dec57612deb613b23565b5b612df884828501612b58565b91505092915050565b600060208284031215612e1757612e16613b28565b5b6000612e2584828501612b86565b91505092915050565b6000612e3a8383613244565b60208301905092915050565b612e4f81613862565b82525050565b6000612e60826136e1565b612e6a818561370f565b9350612e75836136d1565b8060005b83811015612ea6578151612e8d8882612e2e565b9750612e9883613702565b925050600181019050612e79565b5085935050505092915050565b612ebc81613874565b82525050565b6000612ecd826136ec565b612ed78185613720565b9350612ee78185602086016138e5565b612ef081613b2d565b840191505092915050565b6000612f06826136f7565b612f108185613731565b9350612f208185602086016138e5565b612f2981613b2d565b840191505092915050565b6000612f3f826136f7565b612f498185613742565b9350612f598185602086016138e5565b80840191505092915050565b6000612f72602b83613731565b9150612f7d82613b3e565b604082019050919050565b6000612f95603283613731565b9150612fa082613b8d565b604082019050919050565b6000612fb8601c83613731565b9150612fc382613bdc565b602082019050919050565b6000612fdb602483613731565b9150612fe682613c05565b604082019050919050565b6000612ffe601983613731565b915061300982613c54565b602082019050919050565b6000613021602c83613731565b915061302c82613c7d565b604082019050919050565b6000613044603883613731565b915061304f82613ccc565b604082019050919050565b6000613067602a83613731565b915061307282613d1b565b604082019050919050565b600061308a602983613731565b915061309582613d6a565b604082019050919050565b60006130ad602083613731565b91506130b882613db9565b602082019050919050565b60006130d0602c83613731565b91506130db82613de2565b604082019050919050565b60006130f3602083613731565b91506130fe82613e31565b602082019050919050565b6000613116601183613731565b915061312182613e5a565b602082019050919050565b6000613139601b83613731565b915061314482613e83565b602082019050919050565b600061315c602983613731565b915061316782613eac565b604082019050919050565b600061317f602f83613731565b915061318a82613efb565b604082019050919050565b60006131a2601483613731565b91506131ad82613f4a565b602082019050919050565b60006131c5601383613731565b91506131d082613f73565b602082019050919050565b60006131e8602183613731565b91506131f382613f9c565b604082019050919050565b600061320b603183613731565b915061321682613feb565b604082019050919050565b600061322e602c83613731565b91506132398261403a565b604082019050919050565b61324d816138cc565b82525050565b61325c816138cc565b82525050565b61327361326e826138cc565b6139c4565b82525050565b60006132858285612f34565b91506132918284612f34565b91508190509392505050565b60006132a98285613262565b6020820191506132b98284613262565b6020820191508190509392505050565b60006020820190506132de6000830184612e46565b92915050565b60006080820190506132f96000830187612e46565b6133066020830186612e46565b6133136040830185613253565b81810360608301526133258184612ec2565b905095945050505050565b6000602082019050818103600083015261334a8184612e55565b905092915050565b60006020820190506133676000830184612eb3565b92915050565b600060208201905081810360008301526133878184612efb565b905092915050565b600060208201905081810360008301526133a881612f65565b9050919050565b600060208201905081810360008301526133c881612f88565b9050919050565b600060208201905081810360008301526133e881612fab565b9050919050565b6000602082019050818103600083015261340881612fce565b9050919050565b6000602082019050818103600083015261342881612ff1565b9050919050565b6000602082019050818103600083015261344881613014565b9050919050565b6000602082019050818103600083015261346881613037565b9050919050565b600060208201905081810360008301526134888161305a565b9050919050565b600060208201905081810360008301526134a88161307d565b9050919050565b600060208201905081810360008301526134c8816130a0565b9050919050565b600060208201905081810360008301526134e8816130c3565b9050919050565b60006020820190508181036000830152613508816130e6565b9050919050565b6000602082019050818103600083015261352881613109565b9050919050565b600060208201905081810360008301526135488161312c565b9050919050565b600060208201905081810360008301526135688161314f565b9050919050565b6000602082019050818103600083015261358881613172565b9050919050565b600060208201905081810360008301526135a881613195565b9050919050565b600060208201905081810360008301526135c8816131b8565b9050919050565b600060208201905081810360008301526135e8816131db565b9050919050565b60006020820190508181036000830152613608816131fe565b9050919050565b6000602082019050818103600083015261362881613221565b9050919050565b60006020820190506136446000830184613253565b92915050565b6000613654613665565b9050613660828261394a565b919050565b6000604051905090565b600067ffffffffffffffff82111561368a57613689613aea565b5b61369382613b2d565b9050602081019050919050565b600067ffffffffffffffff8211156136bb576136ba613aea565b5b6136c482613b2d565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613758826138cc565b9150613763836138cc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613798576137976139ff565b5b828201905092915050565b60006137ae826138cc565b91506137b9836138cc565b9250826137c9576137c8613a2e565b5b828204905092915050565b60006137df826138cc565b91506137ea836138cc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613823576138226139ff565b5b828202905092915050565b6000613839826138cc565b9150613844836138cc565b925082821015613857576138566139ff565b5b828203905092915050565b600061386d826138ac565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156139035780820151818401526020810190506138e8565b83811115613912576000848401525b50505050565b6000600282049050600182168061393057607f821691505b6020821081141561394457613943613a5d565b5b50919050565b61395382613b2d565b810181811067ffffffffffffffff8211171561397257613971613aea565b5b80604052505050565b6000613986826138cc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139b9576139b86139ff565b5b600182019050919050565b6000819050919050565b60006139d9826138cc565b91506139e4836138cc565b9250826139f4576139f3613a2e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420656e6f7567682045746865722e000000000000000000000000000000600082015250565b7f4578636565647320746865206d6178696d756d20737570706c792e0000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f45786365656473206d61782e20737570706c792e000000000000000000000000600082015250565b7f53616c65206973206e6f74206163746976652e00000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61409281613862565b811461409d57600080fd5b50565b6140a981613874565b81146140b457600080fd5b50565b6140c081613880565b81146140cb57600080fd5b50565b6140d7816138cc565b81146140e257600080fd5b5056fe64623161383562343832653566363961623434353761303161303235666532626136356130326565373364353532653539623662613339306236643964616631a2646970667358221220bfc0be60ccdfa74f50ea6c50803ba3fc7f33162ae3aeccbc2153fbe911be0f6664736f6c6343000807003368747470733a2f2f736f64612e626c6f622e636f72652e77696e646f77732e6e65742f6d657461646174612f

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806370a082311161010d578063b88d4fde116100a0578063e985e9c51161006f578063e985e9c514610712578063ea86be8d1461074f578063eb8d244414610759578063f09850de14610784578063ff1b6556146107af576101f9565b8063b88d4fde1461066c578063c87b56dd14610695578063dfd233dd146106d2578063e7bc8208146106fb576101f9565b806395d89b41116100dc57806395d89b41146105c2578063a035b1fe146105ed578063a22cb46514610618578063aa592f2514610641576101f9565b806370a082311461051a5780637d8966e4146105575780638da5cb5b1461056e57806391b7f5ed14610599576101f9565b806332cb6b0c11610190578063438b63001161015f578063438b6300146103fd5780634f6ccce71461043a57806355f804b3146104775780636352211e146104a0578063709fa8f7146104dd576101f9565b806332cb6b0c146103675780633ccfd60b146103925780633dc464d6146103a957806342842e0e146103d4576101f9565b80631249c58b116101cc5780631249c58b146102cc57806318160ddd146102d657806323b872dd146103015780632f745c591461032a576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612d5e565b6107da565b6040516102329190613352565b60405180910390f35b34801561024757600080fd5b50610250610854565b60405161025d919061336d565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612e01565b6108e6565b60405161029a91906132c9565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190612d1e565b61096b565b005b6102d4610a83565b005b3480156102e257600080fd5b506102eb610b6f565b6040516102f8919061362f565b60405180910390f35b34801561030d57600080fd5b5061032860048036038101906103239190612c08565b610b7c565b005b34801561033657600080fd5b50610351600480360381019061034c9190612d1e565b610bdc565b60405161035e919061362f565b60405180910390f35b34801561037357600080fd5b5061037c610c81565b604051610389919061362f565b60405180910390f35b34801561039e57600080fd5b506103a7610c87565b005b3480156103b557600080fd5b506103be610d52565b6040516103cb9190613352565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190612c08565b610d65565b005b34801561040957600080fd5b50610424600480360381019061041f9190612b9b565b610d85565b6040516104319190613330565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c9190612e01565b610e33565b60405161046e919061362f565b60405180910390f35b34801561048357600080fd5b5061049e60048036038101906104999190612db8565b610ea4565b005b3480156104ac57600080fd5b506104c760048036038101906104c29190612e01565b610f5c565b6040516104d491906132c9565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff9190612e01565b61100e565b604051610511919061362f565b60405180910390f35b34801561052657600080fd5b50610541600480360381019061053c9190612b9b565b611026565b60405161054e919061362f565b60405180910390f35b34801561056357600080fd5b5061056c6110de565b005b34801561057a57600080fd5b50610583611186565b60405161059091906132c9565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb9190612e01565b6111b0565b005b3480156105ce57600080fd5b506105d7611236565b6040516105e4919061336d565b60405180910390f35b3480156105f957600080fd5b506106026112c8565b60405161060f919061362f565b60405180910390f35b34801561062457600080fd5b5061063f600480360381019061063a9190612cde565b6112ce565b005b34801561064d57600080fd5b5061065661144f565b604051610663919061362f565b60405180910390f35b34801561067857600080fd5b50610693600480360381019061068e9190612c5b565b611454565b005b3480156106a157600080fd5b506106bc60048036038101906106b79190612e01565b6114b6565b6040516106c9919061336d565b60405180910390f35b3480156106de57600080fd5b506106f960048036038101906106f49190612b9b565b61155d565b005b34801561070757600080fd5b50610710611632565b005b34801561071e57600080fd5b5061073960048036038101906107349190612bc8565b6116e1565b6040516107469190613352565b60405180910390f35b610757611775565b005b34801561076557600080fd5b5061076e61189a565b60405161077b9190613352565b60405180910390f35b34801561079057600080fd5b506107996118ad565b6040516107a6919061362f565b60405180910390f35b3480156107bb57600080fd5b506107c46118b2565b6040516107d1919061336d565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084d575061084c826118e6565b5b9050919050565b60606000805461086390613918565b80601f016020809104026020016040519081016040528092919081815260200182805461088f90613918565b80156108dc5780601f106108b1576101008083540402835291602001916108dc565b820191906000526020600020905b8154815290600101906020018083116108bf57829003601f168201915b5050505050905090565b60006108f1826119c8565b610930576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610927906134cf565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097682610f5c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109de906135cf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a06611a34565b73ffffffffffffffffffffffffffffffffffffffff161480610a355750610a3481610a2f611a34565b6116e1565b5b610a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6b9061344f565b60405180910390fd5b610a7e8383611a3c565b505050565b600c60009054906101000a900460ff16610ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac9906135af565b60405180910390fd5b6125c5610add610b6f565b10610b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b149061352f565b60405180910390fd5b34600b541115610b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b599061350f565b60405180910390fd5b610b6d336001611af5565b565b6000600880549050905090565b610b8d610b87611a34565b82611b55565b610bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc3906135ef565b60405180910390fd5b610bd7838383611c33565b505050565b6000610be783611026565b8210610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f9061338f565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6125c581565b610c8f611a34565b73ffffffffffffffffffffffffffffffffffffffff16610cad611186565b73ffffffffffffffffffffffffffffffffffffffff1614610d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfa906134ef565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d4e573d6000803e3d6000fd5b5050565b600c60019054906101000a900460ff1681565b610d8083838360405180602001604052806000815250611454565b505050565b60606000610d9283611026565b905060008167ffffffffffffffff811115610db057610daf613aea565b5b604051908082528060200260200182016040528015610dde5781602001602082028036833780820191505090505b50905060005b82811015610e2857610df68582610bdc565b828281518110610e0957610e08613abb565b5b6020026020010181815250508080610e209061397b565b915050610de4565b508092505050919050565b6000610e3d610b6f565b8210610e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e759061360f565b60405180910390fd5b60088281548110610e9257610e91613abb565b5b90600052602060002001549050919050565b610eac611a34565b73ffffffffffffffffffffffffffffffffffffffff16610eca611186565b73ffffffffffffffffffffffffffffffffffffffff1614610f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f17906134ef565b60405180910390fd5b600c60019054906101000a900460ff16610f59576001600c60026101000a81548160ff021916908315150217905550610f5881611e8f565b5b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffc9061348f565b60405180910390fd5b80915050919050565b600e6020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108e9061346f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110e6611a34565b73ffffffffffffffffffffffffffffffffffffffff16611104611186565b73ffffffffffffffffffffffffffffffffffffffff161461115a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611151906134ef565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111b8611a34565b73ffffffffffffffffffffffffffffffffffffffff166111d6611186565b73ffffffffffffffffffffffffffffffffffffffff161461122c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611223906134ef565b60405180910390fd5b80600b8190555050565b60606001805461124590613918565b80601f016020809104026020016040519081016040528092919081815260200182805461127190613918565b80156112be5780601f10611293576101008083540402835291602001916112be565b820191906000526020600020905b8154815290600101906020018083116112a157829003601f168201915b5050505050905090565b600b5481565b6112d6611a34565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611344576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133b9061340f565b60405180910390fd5b8060056000611351611a34565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113fe611a34565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114439190613352565b60405180910390a35050565b602381565b61146561145f611a34565b83611b55565b6114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b906135ef565b60405180910390fd5b6114b084848484611ea9565b50505050565b60606114c1826119c8565b611500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f79061356f565b60405180910390fd5b600061150a611f05565b9050600081511161152a5760405180602001604052806000815250611555565b8061153484611f97565b604051602001611545929190613279565b6040516020818303038152906040525b915050919050565b611565611a34565b73ffffffffffffffffffffffffffffffffffffffff16611583611186565b73ffffffffffffffffffffffffffffffffffffffff16146115d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d0906134ef565b60405180910390fd5b6125c56115e4610b6f565b10611624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161b9061358f565b60405180910390fd5b61162f816001611af5565b50565b61163a611a34565b73ffffffffffffffffffffffffffffffffffffffff16611658611186565b73ffffffffffffffffffffffffffffffffffffffff16146116ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a5906134ef565b60405180910390fd5b600c60029054906101000a900460ff16156116df576001600c60016101000a81548160ff0219169083151502179055505b565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c60009054906101000a900460ff166117c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bb906135af565b60405180910390fd5b6125c560066117d1610b6f565b6117db919061374d565b111561181c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118139061352f565b60405180910390fd5b346006600b5461182c91906137d4565b111561186d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118649061350f565b60405180910390fd5b60005b600681101561189757611884336001611af5565b808061188f9061397b565b915050611870565b50565b600c60009054906101000a900460ff1681565b601681565b6040518060600160405280604081526020016140e66040913981565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806119b157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806119c157506119c0826120f8565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611aaf83610f5c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611aff610b6f565b90508115611b2c57611b1081612162565b600e600083815260200190815260200160002081905550611b46565b6000600e6000838152602001908152602001600020819055505b611b5083826121b7565b505050565b6000611b60826119c8565b611b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b969061342f565b60405180910390fd5b6000611baa83610f5c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c1957508373ffffffffffffffffffffffffffffffffffffffff16611c01846108e6565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c2a5750611c2981856116e1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c5382610f5c565b73ffffffffffffffffffffffffffffffffffffffff1614611ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca09061354f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d10906133ef565b60405180910390fd5b611d248383836121d5565b611d2f600082611a3c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d7f919061382e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dd6919061374d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b80600d9080519060200190611ea59291906129af565b5050565b611eb4848484611c33565b611ec0848484846122e9565b611eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef6906133af565b60405180910390fd5b50505050565b6060600d8054611f1490613918565b80601f0160208091040260200160405190810160405280929190818152602001828054611f4090613918565b8015611f8d5780601f10611f6257610100808354040283529160200191611f8d565b820191906000526020600020905b815481529060010190602001808311611f7057829003601f168201915b5050505050905090565b60606000821415611fdf576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506120f3565b600082905060005b60008214612011578080611ffa9061397b565b915050600a8261200a91906137a3565b9150611fe7565b60008167ffffffffffffffff81111561202d5761202c613aea565b5b6040519080825280601f01601f19166020018201604052801561205f5781602001600182028036833780820191505090505b5090505b600085146120ec57600182612078919061382e565b9150600a8561208791906139ce565b6030612093919061374d565b60f81b8183815181106120a9576120a8613abb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120e591906137a3565b9450612063565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080824260405160200161217892919061329d565b6040516020818303038152906040528051906020012060001c9050826125c56121a1919061382e565b816121ac91906139ce565b905080915050919050565b6121d1828260405180602001604052806000815250612480565b5050565b6121e08383836118e1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122235761221e816124db565b612262565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612261576122608382612524565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122a5576122a081612691565b6122e4565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146122e3576122e28282612762565b5b5b505050565b600061230a8473ffffffffffffffffffffffffffffffffffffffff166118ce565b15612473578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612333611a34565b8786866040518563ffffffff1660e01b815260040161235594939291906132e4565b602060405180830381600087803b15801561236f57600080fd5b505af19250505080156123a057506040513d601f19601f8201168201806040525081019061239d9190612d8b565b60015b612423573d80600081146123d0576040519150601f19603f3d011682016040523d82523d6000602084013e6123d5565b606091505b5060008151141561241b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612412906133af565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612478565b600190505b949350505050565b61248a83836127e1565b61249760008484846122e9565b6124d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cd906133af565b60405180910390fd5b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161253184611026565b61253b919061382e565b9050600060076000848152602001908152602001600020549050818114612620576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506126a5919061382e565b90506000600960008481526020019081526020016000205490506000600883815481106126d5576126d4613abb565b5b9060005260206000200154905080600883815481106126f7576126f6613abb565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061274657612745613a8c565b5b6001900381819060005260206000200160009055905550505050565b600061276d83611026565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612851576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612848906134af565b60405180910390fd5b61285a816119c8565b1561289a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612891906133cf565b60405180910390fd5b6128a6600083836121d5565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128f6919061374d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546129bb90613918565b90600052602060002090601f0160209004810192826129dd5760008555612a24565b82601f106129f657805160ff1916838001178555612a24565b82800160010185558215612a24579182015b82811115612a23578251825591602001919060010190612a08565b5b509050612a319190612a35565b5090565b5b80821115612a4e576000816000905550600101612a36565b5090565b6000612a65612a608461366f565b61364a565b905082815260208101848484011115612a8157612a80613b1e565b5b612a8c8482856138d6565b509392505050565b6000612aa7612aa2846136a0565b61364a565b905082815260208101848484011115612ac357612ac2613b1e565b5b612ace8482856138d6565b509392505050565b600081359050612ae581614089565b92915050565b600081359050612afa816140a0565b92915050565b600081359050612b0f816140b7565b92915050565b600081519050612b24816140b7565b92915050565b600082601f830112612b3f57612b3e613b19565b5b8135612b4f848260208601612a52565b91505092915050565b600082601f830112612b6d57612b6c613b19565b5b8135612b7d848260208601612a94565b91505092915050565b600081359050612b95816140ce565b92915050565b600060208284031215612bb157612bb0613b28565b5b6000612bbf84828501612ad6565b91505092915050565b60008060408385031215612bdf57612bde613b28565b5b6000612bed85828601612ad6565b9250506020612bfe85828601612ad6565b9150509250929050565b600080600060608486031215612c2157612c20613b28565b5b6000612c2f86828701612ad6565b9350506020612c4086828701612ad6565b9250506040612c5186828701612b86565b9150509250925092565b60008060008060808587031215612c7557612c74613b28565b5b6000612c8387828801612ad6565b9450506020612c9487828801612ad6565b9350506040612ca587828801612b86565b925050606085013567ffffffffffffffff811115612cc657612cc5613b23565b5b612cd287828801612b2a565b91505092959194509250565b60008060408385031215612cf557612cf4613b28565b5b6000612d0385828601612ad6565b9250506020612d1485828601612aeb565b9150509250929050565b60008060408385031215612d3557612d34613b28565b5b6000612d4385828601612ad6565b9250506020612d5485828601612b86565b9150509250929050565b600060208284031215612d7457612d73613b28565b5b6000612d8284828501612b00565b91505092915050565b600060208284031215612da157612da0613b28565b5b6000612daf84828501612b15565b91505092915050565b600060208284031215612dce57612dcd613b28565b5b600082013567ffffffffffffffff811115612dec57612deb613b23565b5b612df884828501612b58565b91505092915050565b600060208284031215612e1757612e16613b28565b5b6000612e2584828501612b86565b91505092915050565b6000612e3a8383613244565b60208301905092915050565b612e4f81613862565b82525050565b6000612e60826136e1565b612e6a818561370f565b9350612e75836136d1565b8060005b83811015612ea6578151612e8d8882612e2e565b9750612e9883613702565b925050600181019050612e79565b5085935050505092915050565b612ebc81613874565b82525050565b6000612ecd826136ec565b612ed78185613720565b9350612ee78185602086016138e5565b612ef081613b2d565b840191505092915050565b6000612f06826136f7565b612f108185613731565b9350612f208185602086016138e5565b612f2981613b2d565b840191505092915050565b6000612f3f826136f7565b612f498185613742565b9350612f598185602086016138e5565b80840191505092915050565b6000612f72602b83613731565b9150612f7d82613b3e565b604082019050919050565b6000612f95603283613731565b9150612fa082613b8d565b604082019050919050565b6000612fb8601c83613731565b9150612fc382613bdc565b602082019050919050565b6000612fdb602483613731565b9150612fe682613c05565b604082019050919050565b6000612ffe601983613731565b915061300982613c54565b602082019050919050565b6000613021602c83613731565b915061302c82613c7d565b604082019050919050565b6000613044603883613731565b915061304f82613ccc565b604082019050919050565b6000613067602a83613731565b915061307282613d1b565b604082019050919050565b600061308a602983613731565b915061309582613d6a565b604082019050919050565b60006130ad602083613731565b91506130b882613db9565b602082019050919050565b60006130d0602c83613731565b91506130db82613de2565b604082019050919050565b60006130f3602083613731565b91506130fe82613e31565b602082019050919050565b6000613116601183613731565b915061312182613e5a565b602082019050919050565b6000613139601b83613731565b915061314482613e83565b602082019050919050565b600061315c602983613731565b915061316782613eac565b604082019050919050565b600061317f602f83613731565b915061318a82613efb565b604082019050919050565b60006131a2601483613731565b91506131ad82613f4a565b602082019050919050565b60006131c5601383613731565b91506131d082613f73565b602082019050919050565b60006131e8602183613731565b91506131f382613f9c565b604082019050919050565b600061320b603183613731565b915061321682613feb565b604082019050919050565b600061322e602c83613731565b91506132398261403a565b604082019050919050565b61324d816138cc565b82525050565b61325c816138cc565b82525050565b61327361326e826138cc565b6139c4565b82525050565b60006132858285612f34565b91506132918284612f34565b91508190509392505050565b60006132a98285613262565b6020820191506132b98284613262565b6020820191508190509392505050565b60006020820190506132de6000830184612e46565b92915050565b60006080820190506132f96000830187612e46565b6133066020830186612e46565b6133136040830185613253565b81810360608301526133258184612ec2565b905095945050505050565b6000602082019050818103600083015261334a8184612e55565b905092915050565b60006020820190506133676000830184612eb3565b92915050565b600060208201905081810360008301526133878184612efb565b905092915050565b600060208201905081810360008301526133a881612f65565b9050919050565b600060208201905081810360008301526133c881612f88565b9050919050565b600060208201905081810360008301526133e881612fab565b9050919050565b6000602082019050818103600083015261340881612fce565b9050919050565b6000602082019050818103600083015261342881612ff1565b9050919050565b6000602082019050818103600083015261344881613014565b9050919050565b6000602082019050818103600083015261346881613037565b9050919050565b600060208201905081810360008301526134888161305a565b9050919050565b600060208201905081810360008301526134a88161307d565b9050919050565b600060208201905081810360008301526134c8816130a0565b9050919050565b600060208201905081810360008301526134e8816130c3565b9050919050565b60006020820190508181036000830152613508816130e6565b9050919050565b6000602082019050818103600083015261352881613109565b9050919050565b600060208201905081810360008301526135488161312c565b9050919050565b600060208201905081810360008301526135688161314f565b9050919050565b6000602082019050818103600083015261358881613172565b9050919050565b600060208201905081810360008301526135a881613195565b9050919050565b600060208201905081810360008301526135c8816131b8565b9050919050565b600060208201905081810360008301526135e8816131db565b9050919050565b60006020820190508181036000830152613608816131fe565b9050919050565b6000602082019050818103600083015261362881613221565b9050919050565b60006020820190506136446000830184613253565b92915050565b6000613654613665565b9050613660828261394a565b919050565b6000604051905090565b600067ffffffffffffffff82111561368a57613689613aea565b5b61369382613b2d565b9050602081019050919050565b600067ffffffffffffffff8211156136bb576136ba613aea565b5b6136c482613b2d565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613758826138cc565b9150613763836138cc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613798576137976139ff565b5b828201905092915050565b60006137ae826138cc565b91506137b9836138cc565b9250826137c9576137c8613a2e565b5b828204905092915050565b60006137df826138cc565b91506137ea836138cc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613823576138226139ff565b5b828202905092915050565b6000613839826138cc565b9150613844836138cc565b925082821015613857576138566139ff565b5b828203905092915050565b600061386d826138ac565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156139035780820151818401526020810190506138e8565b83811115613912576000848401525b50505050565b6000600282049050600182168061393057607f821691505b6020821081141561394457613943613a5d565b5b50919050565b61395382613b2d565b810181811067ffffffffffffffff8211171561397257613971613aea565b5b80604052505050565b6000613986826138cc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139b9576139b86139ff565b5b600182019050919050565b6000819050919050565b60006139d9826138cc565b91506139e4836138cc565b9250826139f4576139f3613a2e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420656e6f7567682045746865722e000000000000000000000000000000600082015250565b7f4578636565647320746865206d6178696d756d20737570706c792e0000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f45786365656473206d61782e20737570706c792e000000000000000000000000600082015250565b7f53616c65206973206e6f74206163746976652e00000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61409281613862565b811461409d57600080fd5b50565b6140a981613874565b81146140b457600080fd5b50565b6140c081613880565b81146140cb57600080fd5b50565b6140d7816138cc565b81146140e257600080fd5b5056fe64623161383562343832653566363961623434353761303161303235666532626136356130326565373364353532653539623662613339306236643964616631a2646970667358221220bfc0be60ccdfa74f50ea6c50803ba3fc7f33162ae3aeccbc2153fbe911be0f6664736f6c63430008070033

Deployed Bytecode Sourcemap

41553:4168:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34466:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21371:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22930:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22453:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42785:252;;;:::i;:::-;;35106:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23820:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34774:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41719:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42311:133;;;;;;;;;;;;;:::i;:::-;;41931:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24230:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43362:314;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35296:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42512:154;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21065:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42043:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20795:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43849:80;;;;;;;;;;;;;:::i;:::-;;41065:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44008:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21540:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41849:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23223:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41765:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24486:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21715:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43682:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42672:107;;;;;;;;;;;;;:::i;:::-;;23589:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43043:313;;;:::i;:::-;;41894:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41807:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41605:107;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34466:224;34568:4;34607:35;34592:50;;;:11;:50;;;;:90;;;;34646:36;34670:11;34646:23;:36::i;:::-;34592:90;34585:97;;34466:224;;;:::o;21371:100::-;21425:13;21458:5;21451:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21371:100;:::o;22930:221::-;23006:7;23034:16;23042:7;23034;:16::i;:::-;23026:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23119:15;:24;23135:7;23119:24;;;;;;;;;;;;;;;;;;;;;23112:31;;22930:221;;;:::o;22453:411::-;22534:13;22550:23;22565:7;22550:14;:23::i;:::-;22534:39;;22598:5;22592:11;;:2;:11;;;;22584:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22692:5;22676:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22701:37;22718:5;22725:12;:10;:12::i;:::-;22701:16;:37::i;:::-;22676:62;22654:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;22835:21;22844:2;22848:7;22835:8;:21::i;:::-;22523:341;22453:411;;:::o;42785:252::-;42831:12;;;;;;;;;;;42823:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;41756:4;42882:13;:11;:13::i;:::-;:26;42874:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;42964:9;42955:5;;:18;;42947:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;43004:27;43014:10;43026:4;43004:9;:27::i;:::-;42785:252::o;35106:113::-;35167:7;35194:10;:17;;;;35187:24;;35106:113;:::o;23820:339::-;24015:41;24034:12;:10;:12::i;:::-;24048:7;24015:18;:41::i;:::-;24007:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24123:28;24133:4;24139:2;24143:7;24123:9;:28::i;:::-;23820:339;;;:::o;34774:256::-;34871:7;34907:23;34924:5;34907:16;:23::i;:::-;34899:5;:31;34891:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;34996:12;:19;35009:5;34996:19;;;;;;;;;;;;;;;:26;35016:5;34996:26;;;;;;;;;;;;34989:33;;34774:256;;;;:::o;41719:41::-;41756:4;41719:41;:::o;42311:133::-;41296:12;:10;:12::i;:::-;41285:23;;:7;:5;:7::i;:::-;:23;;;41277:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42355:15:::1;42373:21;42355:39;;42409:10;42401:28;;:37;42430:7;42401:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;42348:96;42311:133::o:0;41931:31::-;;;;;;;;;;;;;:::o;24230:185::-;24368:39;24385:4;24391:2;24395:7;24368:39;;;;;;;;;;;;:16;:39::i;:::-;24230:185;;;:::o;43362:314::-;43421:16;43446:18;43467:17;43477:6;43467:9;:17::i;:::-;43446:38;;43493:25;43535:10;43521:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43493:53;;43557:9;43553:96;43572:10;43568:1;:14;43553:96;;;43611:30;43631:6;43639:1;43611:19;:30::i;:::-;43597:8;43606:1;43597:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;43584:3;;;;;:::i;:::-;;;;43553:96;;;;43662:8;43655:15;;;;43362:314;;;:::o;35296:233::-;35371:7;35407:30;:28;:30::i;:::-;35399:5;:38;35391:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35504:10;35515:5;35504:17;;;;;;;;:::i;:::-;;;;;;;;;;35497:24;;35296:233;;;:::o;42512:154::-;41296:12;:10;:12::i;:::-;41285:23;;:7;:5;:7::i;:::-;:23;;;41277:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42583:11:::1;;;;;;;;;;;42579:82;;42620:4;42604:13;;:20;;;;;;;;;;;;;;;;;;42633;42645:7;42633:11;:20::i;:::-;42579:82;42512:154:::0;:::o;21065:239::-;21137:7;21157:13;21173:7;:16;21181:7;21173:16;;;;;;;;;;;;;;;;;;;;;21157:32;;21225:1;21208:19;;:5;:19;;;;21200:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21291:5;21284:12;;;21065:239;;;:::o;42043:47::-;;;;;;;;;;;;;;;;;:::o;20795:208::-;20867:7;20912:1;20895:19;;:5;:19;;;;20887:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;20979:9;:16;20989:5;20979:16;;;;;;;;;;;;;;;;20972:23;;20795:208;;;:::o;43849:80::-;41296:12;:10;:12::i;:::-;41285:23;;:7;:5;:7::i;:::-;:23;;;41277:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43911:12:::1;;;;;;;;;;;43910:13;43895:12;;:28;;;;;;;;;;;;;;;;;;43849:80::o:0;41065:87::-;41111:7;41138:6;;;;;;;;;;;41131:13;;41065:87;:::o;44008:84::-;41296:12;:10;:12::i;:::-;41285:23;;:7;:5;:7::i;:::-;:23;;;41277:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44078:8:::1;44070:5;:16;;;;44008:84:::0;:::o;21540:104::-;21596:13;21629:7;21622:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21540:104;:::o;41849:40::-;;;;:::o;23223:295::-;23338:12;:10;:12::i;:::-;23326:24;;:8;:24;;;;23318:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23438:8;23393:18;:32;23412:12;:10;:12::i;:::-;23393:32;;;;;;;;;;;;;;;:42;23426:8;23393:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23491:8;23462:48;;23477:12;:10;:12::i;:::-;23462:48;;;23501:8;23462:48;;;;;;:::i;:::-;;;;;;;;23223:295;;:::o;41765:37::-;41800:2;41765:37;:::o;24486:328::-;24661:41;24680:12;:10;:12::i;:::-;24694:7;24661:18;:41::i;:::-;24653:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24767:39;24781:4;24787:2;24791:7;24800:5;24767:13;:39::i;:::-;24486:328;;;;:::o;21715:334::-;21788:13;21822:16;21830:7;21822;:16::i;:::-;21814:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;21903:21;21927:10;:8;:10::i;:::-;21903:34;;21979:1;21961:7;21955:21;:25;:86;;;;;;;;;;;;;;;;;22007:7;22016:18;:7;:16;:18::i;:::-;21990:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21955:86;21948:93;;;21715:334;;;:::o;43682:161::-;41296:12;:10;:12::i;:::-;41285:23;;:7;:5;:7::i;:::-;:23;;;41277:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41756:4:::1;43752:13;:11;:13::i;:::-;:26;43744:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;43812:25;43822:8;43832:4;43812:9;:25::i;:::-;43682:161:::0;:::o;42672:107::-;41296:12;:10;:12::i;:::-;41285:23;;:7;:5;:7::i;:::-;:23;;;41277:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42724:13:::1;;;;;;;;;;;42721:53;;;42762:4;42748:11;;:18;;;;;;;;;;;;;;;;;;42721:53;42672:107::o:0;23589:164::-;23686:4;23710:18;:25;23729:5;23710:25;;;;;;;;;;;;;;;:35;23736:8;23710:35;;;;;;;;;;;;;;;;;;;;;;;;;23703:42;;23589:164;;;;:::o;43043:313::-;43096:12;;;;;;;;;;;43088:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;41756:4;43163:1;43147:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:31;;43139:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;43238:9;43233:1;43225:5;;:9;;;;:::i;:::-;:22;;43217:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;43283:6;43278:73;43299:1;43295;:5;43278:73;;;43316:27;43326:10;43338:4;43316:9;:27::i;:::-;43302:3;;;;;:::i;:::-;;;;43278:73;;;;43043:313::o;41894:32::-;;;;;;;;;;;;;:::o;41807:35::-;41840:2;41807:35;:::o;41605:107::-;;;;;;;;;;;;;;;;;;;:::o;8126:387::-;8186:4;8394:12;8461:7;8449:20;8441:28;;8504:1;8497:4;:8;8490:15;;;8126:387;;;:::o;32420:126::-;;;;:::o;20426:305::-;20528:4;20580:25;20565:40;;;:11;:40;;;;:105;;;;20637:33;20622:48;;;:11;:48;;;;20565:105;:158;;;;20687:36;20711:11;20687:23;:36::i;:::-;20565:158;20545:178;;20426:305;;;:::o;26324:127::-;26389:4;26441:1;26413:30;;:7;:16;26421:7;26413:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26406:37;;26324:127;;;:::o;15860:98::-;15913:7;15940:10;15933:17;;15860:98;:::o;30306:174::-;30408:2;30381:15;:24;30397:7;30381:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30464:7;30460:2;30426:46;;30435:23;30450:7;30435:14;:23::i;:::-;30426:46;;;;;;;;;;;;30306:174;;:::o;45078:280::-;45145:10;45158:13;:11;:13::i;:::-;45145:26;;45182:8;45178:142;;;45228:28;45250:5;45228:21;:28::i;:::-;45201:17;:24;45219:5;45201:24;;;;;;;;;;;:55;;;;45178:142;;;45311:1;45284:17;:24;45302:5;45284:24;;;;;;;;;;;:28;;;;45178:142;45326:26;45336:8;45346:5;45326:9;:26::i;:::-;45138:220;45078:280;;:::o;26618:348::-;26711:4;26736:16;26744:7;26736;:16::i;:::-;26728:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26812:13;26828:23;26843:7;26828:14;:23::i;:::-;26812:39;;26881:5;26870:16;;:7;:16;;;:51;;;;26914:7;26890:31;;:20;26902:7;26890:11;:20::i;:::-;:31;;;26870:51;:87;;;;26925:32;26942:5;26949:7;26925:16;:32::i;:::-;26870:87;26862:96;;;26618:348;;;;:::o;29610:578::-;29769:4;29742:31;;:23;29757:7;29742:14;:23::i;:::-;:31;;;29734:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29852:1;29838:16;;:2;:16;;;;29830:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29908:39;29929:4;29935:2;29939:7;29908:20;:39::i;:::-;30012:29;30029:1;30033:7;30012:8;:29::i;:::-;30073:1;30054:9;:15;30064:4;30054:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30102:1;30085:9;:13;30095:2;30085:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30133:2;30114:7;:16;30122:7;30114:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30172:7;30168:2;30153:27;;30162:4;30153:27;;;;;;;;;;;;29610:578;;;:::o;44098:80::-;44169:3;44153:13;:19;;;;;;;;;;;;:::i;:::-;;44098:80;:::o;25696:315::-;25853:28;25863:4;25869:2;25873:7;25853:9;:28::i;:::-;25900:48;25923:4;25929:2;25933:7;25942:5;25900:22;:48::i;:::-;25892:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25696:315;;;;:::o;45610:108::-;45670:13;45699;45692:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45610:108;:::o;16381:723::-;16437:13;16667:1;16658:5;:10;16654:53;;;16685:10;;;;;;;;;;;;;;;;;;;;;16654:53;16717:12;16732:5;16717:20;;16748:14;16773:78;16788:1;16780:4;:9;16773:78;;16806:8;;;;;:::i;:::-;;;;16837:2;16829:10;;;;;:::i;:::-;;;16773:78;;;16861:19;16893:6;16883:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16861:39;;16911:154;16927:1;16918:5;:10;16911:154;;16955:1;16945:11;;;;;:::i;:::-;;;17022:2;17014:5;:10;;;;:::i;:::-;17001:2;:24;;;;:::i;:::-;16988:39;;16971:6;16978;16971:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;17051:2;17042:11;;;;;:::i;:::-;;;16911:154;;;17089:6;17075:21;;;;;16381:723;;;;:::o;18934:157::-;19019:4;19058:25;19043:40;;;:11;:40;;;;19036:47;;18934:157;;;:::o;45364:240::-;45429:4;45442:16;45493:5;45500:15;45476:40;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45466:51;;;;;;45461:57;;45442:76;;45567:5;41756:4;45554:18;;;;:::i;:::-;45539:11;:34;;;;:::i;:::-;45525:48;;45587:11;45580:18;;;45364:240;;;:::o;27308:110::-;27384:26;27394:2;27398:7;27384:26;;;;;;;;;;;;:9;:26::i;:::-;27308:110;;:::o;36142:589::-;36286:45;36313:4;36319:2;36323:7;36286:26;:45::i;:::-;36364:1;36348:18;;:4;:18;;;36344:187;;;36383:40;36415:7;36383:31;:40::i;:::-;36344:187;;;36453:2;36445:10;;:4;:10;;;36441:90;;36472:47;36505:4;36511:7;36472:32;:47::i;:::-;36441:90;36344:187;36559:1;36545:16;;:2;:16;;;36541:183;;;36578:45;36615:7;36578:36;:45::i;:::-;36541:183;;;36651:4;36645:10;;:2;:10;;;36641:83;;36672:40;36700:2;36704:7;36672:27;:40::i;:::-;36641:83;36541:183;36142:589;;;:::o;31045:803::-;31200:4;31221:15;:2;:13;;;:15::i;:::-;31217:624;;;31273:2;31257:36;;;31294:12;:10;:12::i;:::-;31308:4;31314:7;31323:5;31257:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31253:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31520:1;31503:6;:13;:18;31499:272;;;31546:60;;;;;;;;;;:::i;:::-;;;;;;;;31499:272;31721:6;31715:13;31706:6;31702:2;31698:15;31691:38;31253:533;31390:45;;;31380:55;;;:6;:55;;;;31373:62;;;;;31217:624;31825:4;31818:11;;31045:803;;;;;;;:::o;27645:321::-;27775:18;27781:2;27785:7;27775:5;:18::i;:::-;27826:54;27857:1;27861:2;27865:7;27874:5;27826:22;:54::i;:::-;27804:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;27645:321;;;:::o;37454:164::-;37558:10;:17;;;;37531:15;:24;37547:7;37531:24;;;;;;;;;;;:44;;;;37586:10;37602:7;37586:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37454:164;:::o;38245:988::-;38511:22;38561:1;38536:22;38553:4;38536:16;:22::i;:::-;:26;;;;:::i;:::-;38511:51;;38573:18;38594:17;:26;38612:7;38594:26;;;;;;;;;;;;38573:47;;38741:14;38727:10;:28;38723:328;;38772:19;38794:12;:18;38807:4;38794:18;;;;;;;;;;;;;;;:34;38813:14;38794:34;;;;;;;;;;;;38772:56;;38878:11;38845:12;:18;38858:4;38845:18;;;;;;;;;;;;;;;:30;38864:10;38845:30;;;;;;;;;;;:44;;;;38995:10;38962:17;:30;38980:11;38962:30;;;;;;;;;;;:43;;;;38757:294;38723:328;39147:17;:26;39165:7;39147:26;;;;;;;;;;;39140:33;;;39191:12;:18;39204:4;39191:18;;;;;;;;;;;;;;;:34;39210:14;39191:34;;;;;;;;;;;39184:41;;;38326:907;;38245:988;;:::o;39528:1079::-;39781:22;39826:1;39806:10;:17;;;;:21;;;;:::i;:::-;39781:46;;39838:18;39859:15;:24;39875:7;39859:24;;;;;;;;;;;;39838:45;;40210:19;40232:10;40243:14;40232:26;;;;;;;;:::i;:::-;;;;;;;;;;40210:48;;40296:11;40271:10;40282;40271:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;40407:10;40376:15;:28;40392:11;40376:28;;;;;;;;;;;:41;;;;40548:15;:24;40564:7;40548:24;;;;;;;;;;;40541:31;;;40583:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39599:1008;;;39528:1079;:::o;37032:221::-;37117:14;37134:20;37151:2;37134:16;:20::i;:::-;37117:37;;37192:7;37165:12;:16;37178:2;37165:16;;;;;;;;;;;;;;;:24;37182:6;37165:24;;;;;;;;;;;:34;;;;37239:6;37210:17;:26;37228:7;37210:26;;;;;;;;;;;:35;;;;37106:147;37032:221;;:::o;28302:382::-;28396:1;28382:16;;:2;:16;;;;28374:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28455:16;28463:7;28455;:16::i;:::-;28454:17;28446:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28517:45;28546:1;28550:2;28554:7;28517:20;:45::i;:::-;28592:1;28575:9;:13;28585:2;28575:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28623:2;28604:7;:16;28612:7;28604:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28668:7;28664:2;28643:33;;28660:1;28643:33;;;;;;;;;;;;28302:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:179::-;7227:10;7248:46;7290:3;7282:6;7248:46;:::i;:::-;7326:4;7321:3;7317:14;7303:28;;7158:179;;;;:::o;7343:118::-;7430:24;7448:5;7430:24;:::i;:::-;7425:3;7418:37;7343:118;;:::o;7497:732::-;7616:3;7645:54;7693:5;7645:54;:::i;:::-;7715:86;7794:6;7789:3;7715:86;:::i;:::-;7708:93;;7825:56;7875:5;7825:56;:::i;:::-;7904:7;7935:1;7920:284;7945:6;7942:1;7939:13;7920:284;;;8021:6;8015:13;8048:63;8107:3;8092:13;8048:63;:::i;:::-;8041:70;;8134:60;8187:6;8134:60;:::i;:::-;8124:70;;7980:224;7967:1;7964;7960:9;7955:14;;7920:284;;;7924:14;8220:3;8213:10;;7621:608;;;7497:732;;;;:::o;8235:109::-;8316:21;8331:5;8316:21;:::i;:::-;8311:3;8304:34;8235:109;;:::o;8350:360::-;8436:3;8464:38;8496:5;8464:38;:::i;:::-;8518:70;8581:6;8576:3;8518:70;:::i;:::-;8511:77;;8597:52;8642:6;8637:3;8630:4;8623:5;8619:16;8597:52;:::i;:::-;8674:29;8696:6;8674:29;:::i;:::-;8669:3;8665:39;8658:46;;8440:270;8350:360;;;;:::o;8716:364::-;8804:3;8832:39;8865:5;8832:39;:::i;:::-;8887:71;8951:6;8946:3;8887:71;:::i;:::-;8880:78;;8967:52;9012:6;9007:3;9000:4;8993:5;8989:16;8967:52;:::i;:::-;9044:29;9066:6;9044:29;:::i;:::-;9039:3;9035:39;9028:46;;8808:272;8716:364;;;;:::o;9086:377::-;9192:3;9220:39;9253:5;9220:39;:::i;:::-;9275:89;9357:6;9352:3;9275:89;:::i;:::-;9268:96;;9373:52;9418:6;9413:3;9406:4;9399:5;9395:16;9373:52;:::i;:::-;9450:6;9445:3;9441:16;9434:23;;9196:267;9086:377;;;;:::o;9469:366::-;9611:3;9632:67;9696:2;9691:3;9632:67;:::i;:::-;9625:74;;9708:93;9797:3;9708:93;:::i;:::-;9826:2;9821:3;9817:12;9810:19;;9469:366;;;:::o;9841:::-;9983:3;10004:67;10068:2;10063:3;10004:67;:::i;:::-;9997:74;;10080:93;10169:3;10080:93;:::i;:::-;10198:2;10193:3;10189:12;10182:19;;9841:366;;;:::o;10213:::-;10355:3;10376:67;10440:2;10435:3;10376:67;:::i;:::-;10369:74;;10452:93;10541:3;10452:93;:::i;:::-;10570:2;10565:3;10561:12;10554:19;;10213:366;;;:::o;10585:::-;10727:3;10748:67;10812:2;10807:3;10748:67;:::i;:::-;10741:74;;10824:93;10913:3;10824:93;:::i;:::-;10942:2;10937:3;10933:12;10926:19;;10585:366;;;:::o;10957:::-;11099:3;11120:67;11184:2;11179:3;11120:67;:::i;:::-;11113:74;;11196:93;11285:3;11196:93;:::i;:::-;11314:2;11309:3;11305:12;11298:19;;10957:366;;;:::o;11329:::-;11471:3;11492:67;11556:2;11551:3;11492:67;:::i;:::-;11485:74;;11568:93;11657:3;11568:93;:::i;:::-;11686:2;11681:3;11677:12;11670:19;;11329:366;;;:::o;11701:::-;11843:3;11864:67;11928:2;11923:3;11864:67;:::i;:::-;11857:74;;11940:93;12029:3;11940:93;:::i;:::-;12058:2;12053:3;12049:12;12042:19;;11701:366;;;:::o;12073:::-;12215:3;12236:67;12300:2;12295:3;12236:67;:::i;:::-;12229:74;;12312:93;12401:3;12312:93;:::i;:::-;12430:2;12425:3;12421:12;12414:19;;12073:366;;;:::o;12445:::-;12587:3;12608:67;12672:2;12667:3;12608:67;:::i;:::-;12601:74;;12684:93;12773:3;12684:93;:::i;:::-;12802:2;12797:3;12793:12;12786:19;;12445:366;;;:::o;12817:::-;12959:3;12980:67;13044:2;13039:3;12980:67;:::i;:::-;12973:74;;13056:93;13145:3;13056:93;:::i;:::-;13174:2;13169:3;13165:12;13158:19;;12817:366;;;:::o;13189:::-;13331:3;13352:67;13416:2;13411:3;13352:67;:::i;:::-;13345:74;;13428:93;13517:3;13428:93;:::i;:::-;13546:2;13541:3;13537:12;13530:19;;13189:366;;;:::o;13561:::-;13703:3;13724:67;13788:2;13783:3;13724:67;:::i;:::-;13717:74;;13800:93;13889:3;13800:93;:::i;:::-;13918:2;13913:3;13909:12;13902:19;;13561:366;;;:::o;13933:::-;14075:3;14096:67;14160:2;14155:3;14096:67;:::i;:::-;14089:74;;14172:93;14261:3;14172:93;:::i;:::-;14290:2;14285:3;14281:12;14274:19;;13933:366;;;:::o;14305:::-;14447:3;14468:67;14532:2;14527:3;14468:67;:::i;:::-;14461:74;;14544:93;14633:3;14544:93;:::i;:::-;14662:2;14657:3;14653:12;14646:19;;14305:366;;;:::o;14677:::-;14819:3;14840:67;14904:2;14899:3;14840:67;:::i;:::-;14833:74;;14916:93;15005:3;14916:93;:::i;:::-;15034:2;15029:3;15025:12;15018:19;;14677:366;;;:::o;15049:::-;15191:3;15212:67;15276:2;15271:3;15212:67;:::i;:::-;15205:74;;15288:93;15377:3;15288:93;:::i;:::-;15406:2;15401:3;15397:12;15390:19;;15049:366;;;:::o;15421:::-;15563:3;15584:67;15648:2;15643:3;15584:67;:::i;:::-;15577:74;;15660:93;15749:3;15660:93;:::i;:::-;15778:2;15773:3;15769:12;15762:19;;15421:366;;;:::o;15793:::-;15935:3;15956:67;16020:2;16015:3;15956:67;:::i;:::-;15949:74;;16032:93;16121:3;16032:93;:::i;:::-;16150:2;16145:3;16141:12;16134:19;;15793:366;;;:::o;16165:::-;16307:3;16328:67;16392:2;16387:3;16328:67;:::i;:::-;16321:74;;16404:93;16493:3;16404:93;:::i;:::-;16522:2;16517:3;16513:12;16506:19;;16165:366;;;:::o;16537:::-;16679:3;16700:67;16764:2;16759:3;16700:67;:::i;:::-;16693:74;;16776:93;16865:3;16776:93;:::i;:::-;16894:2;16889:3;16885:12;16878:19;;16537:366;;;:::o;16909:::-;17051:3;17072:67;17136:2;17131:3;17072:67;:::i;:::-;17065:74;;17148:93;17237:3;17148:93;:::i;:::-;17266:2;17261:3;17257:12;17250:19;;16909:366;;;:::o;17281:108::-;17358:24;17376:5;17358:24;:::i;:::-;17353:3;17346:37;17281:108;;:::o;17395:118::-;17482:24;17500:5;17482:24;:::i;:::-;17477:3;17470:37;17395:118;;:::o;17519:157::-;17624:45;17644:24;17662:5;17644:24;:::i;:::-;17624:45;:::i;:::-;17619:3;17612:58;17519:157;;:::o;17682:435::-;17862:3;17884:95;17975:3;17966:6;17884:95;:::i;:::-;17877:102;;17996:95;18087:3;18078:6;17996:95;:::i;:::-;17989:102;;18108:3;18101:10;;17682:435;;;;;:::o;18123:397::-;18263:3;18278:75;18349:3;18340:6;18278:75;:::i;:::-;18378:2;18373:3;18369:12;18362:19;;18391:75;18462:3;18453:6;18391:75;:::i;:::-;18491:2;18486:3;18482:12;18475:19;;18511:3;18504:10;;18123:397;;;;;:::o;18526:222::-;18619:4;18657:2;18646:9;18642:18;18634:26;;18670:71;18738:1;18727:9;18723:17;18714:6;18670:71;:::i;:::-;18526:222;;;;:::o;18754:640::-;18949:4;18987:3;18976:9;18972:19;18964:27;;19001:71;19069:1;19058:9;19054:17;19045:6;19001:71;:::i;:::-;19082:72;19150:2;19139:9;19135:18;19126:6;19082:72;:::i;:::-;19164;19232:2;19221:9;19217:18;19208:6;19164:72;:::i;:::-;19283:9;19277:4;19273:20;19268:2;19257:9;19253:18;19246:48;19311:76;19382:4;19373:6;19311:76;:::i;:::-;19303:84;;18754:640;;;;;;;:::o;19400:373::-;19543:4;19581:2;19570:9;19566:18;19558:26;;19630:9;19624:4;19620:20;19616:1;19605:9;19601:17;19594:47;19658:108;19761:4;19752:6;19658:108;:::i;:::-;19650:116;;19400:373;;;;:::o;19779:210::-;19866:4;19904:2;19893:9;19889:18;19881:26;;19917:65;19979:1;19968:9;19964:17;19955:6;19917:65;:::i;:::-;19779:210;;;;:::o;19995:313::-;20108:4;20146:2;20135:9;20131:18;20123:26;;20195:9;20189:4;20185:20;20181:1;20170:9;20166:17;20159:47;20223:78;20296:4;20287:6;20223:78;:::i;:::-;20215:86;;19995:313;;;;:::o;20314:419::-;20480:4;20518:2;20507:9;20503:18;20495:26;;20567:9;20561:4;20557:20;20553:1;20542:9;20538:17;20531:47;20595:131;20721:4;20595:131;:::i;:::-;20587:139;;20314:419;;;:::o;20739:::-;20905:4;20943:2;20932:9;20928:18;20920:26;;20992:9;20986:4;20982:20;20978:1;20967:9;20963:17;20956:47;21020:131;21146:4;21020:131;:::i;:::-;21012:139;;20739:419;;;:::o;21164:::-;21330:4;21368:2;21357:9;21353:18;21345:26;;21417:9;21411:4;21407:20;21403:1;21392:9;21388:17;21381:47;21445:131;21571:4;21445:131;:::i;:::-;21437:139;;21164:419;;;:::o;21589:::-;21755:4;21793:2;21782:9;21778:18;21770:26;;21842:9;21836:4;21832:20;21828:1;21817:9;21813:17;21806:47;21870:131;21996:4;21870:131;:::i;:::-;21862:139;;21589:419;;;:::o;22014:::-;22180:4;22218:2;22207:9;22203:18;22195:26;;22267:9;22261:4;22257:20;22253:1;22242:9;22238:17;22231:47;22295:131;22421:4;22295:131;:::i;:::-;22287:139;;22014:419;;;:::o;22439:::-;22605:4;22643:2;22632:9;22628:18;22620:26;;22692:9;22686:4;22682:20;22678:1;22667:9;22663:17;22656:47;22720:131;22846:4;22720:131;:::i;:::-;22712:139;;22439:419;;;:::o;22864:::-;23030:4;23068:2;23057:9;23053:18;23045:26;;23117:9;23111:4;23107:20;23103:1;23092:9;23088:17;23081:47;23145:131;23271:4;23145:131;:::i;:::-;23137:139;;22864:419;;;:::o;23289:::-;23455:4;23493:2;23482:9;23478:18;23470:26;;23542:9;23536:4;23532:20;23528:1;23517:9;23513:17;23506:47;23570:131;23696:4;23570:131;:::i;:::-;23562:139;;23289:419;;;:::o;23714:::-;23880:4;23918:2;23907:9;23903:18;23895:26;;23967:9;23961:4;23957:20;23953:1;23942:9;23938:17;23931:47;23995:131;24121:4;23995:131;:::i;:::-;23987:139;;23714:419;;;:::o;24139:::-;24305:4;24343:2;24332:9;24328:18;24320:26;;24392:9;24386:4;24382:20;24378:1;24367:9;24363:17;24356:47;24420:131;24546:4;24420:131;:::i;:::-;24412:139;;24139:419;;;:::o;24564:::-;24730:4;24768:2;24757:9;24753:18;24745:26;;24817:9;24811:4;24807:20;24803:1;24792:9;24788:17;24781:47;24845:131;24971:4;24845:131;:::i;:::-;24837:139;;24564:419;;;:::o;24989:::-;25155:4;25193:2;25182:9;25178:18;25170:26;;25242:9;25236:4;25232:20;25228:1;25217:9;25213:17;25206:47;25270:131;25396:4;25270:131;:::i;:::-;25262:139;;24989:419;;;:::o;25414:::-;25580:4;25618:2;25607:9;25603:18;25595:26;;25667:9;25661:4;25657:20;25653:1;25642:9;25638:17;25631:47;25695:131;25821:4;25695:131;:::i;:::-;25687:139;;25414:419;;;:::o;25839:::-;26005:4;26043:2;26032:9;26028:18;26020:26;;26092:9;26086:4;26082:20;26078:1;26067:9;26063:17;26056:47;26120:131;26246:4;26120:131;:::i;:::-;26112:139;;25839:419;;;:::o;26264:::-;26430:4;26468:2;26457:9;26453:18;26445:26;;26517:9;26511:4;26507:20;26503:1;26492:9;26488:17;26481:47;26545:131;26671:4;26545:131;:::i;:::-;26537:139;;26264:419;;;:::o;26689:::-;26855:4;26893:2;26882:9;26878:18;26870:26;;26942:9;26936:4;26932:20;26928:1;26917:9;26913:17;26906:47;26970:131;27096:4;26970:131;:::i;:::-;26962:139;;26689:419;;;:::o;27114:::-;27280:4;27318:2;27307:9;27303:18;27295:26;;27367:9;27361:4;27357:20;27353:1;27342:9;27338:17;27331:47;27395:131;27521:4;27395:131;:::i;:::-;27387:139;;27114:419;;;:::o;27539:::-;27705:4;27743:2;27732:9;27728:18;27720:26;;27792:9;27786:4;27782:20;27778:1;27767:9;27763:17;27756:47;27820:131;27946:4;27820:131;:::i;:::-;27812:139;;27539:419;;;:::o;27964:::-;28130:4;28168:2;28157:9;28153:18;28145:26;;28217:9;28211:4;28207:20;28203:1;28192:9;28188:17;28181:47;28245:131;28371:4;28245:131;:::i;:::-;28237:139;;27964:419;;;:::o;28389:::-;28555:4;28593:2;28582:9;28578:18;28570:26;;28642:9;28636:4;28632:20;28628:1;28617:9;28613:17;28606:47;28670:131;28796:4;28670:131;:::i;:::-;28662:139;;28389:419;;;:::o;28814:::-;28980:4;29018:2;29007:9;29003:18;28995:26;;29067:9;29061:4;29057:20;29053:1;29042:9;29038:17;29031:47;29095:131;29221:4;29095:131;:::i;:::-;29087:139;;28814:419;;;:::o;29239:222::-;29332:4;29370:2;29359:9;29355:18;29347:26;;29383:71;29451:1;29440:9;29436:17;29427:6;29383:71;:::i;:::-;29239:222;;;;:::o;29467:129::-;29501:6;29528:20;;:::i;:::-;29518:30;;29557:33;29585:4;29577:6;29557:33;:::i;:::-;29467:129;;;:::o;29602:75::-;29635:6;29668:2;29662:9;29652:19;;29602:75;:::o;29683:307::-;29744:4;29834:18;29826:6;29823:30;29820:56;;;29856:18;;:::i;:::-;29820:56;29894:29;29916:6;29894:29;:::i;:::-;29886:37;;29978:4;29972;29968:15;29960:23;;29683:307;;;:::o;29996:308::-;30058:4;30148:18;30140:6;30137:30;30134:56;;;30170:18;;:::i;:::-;30134:56;30208:29;30230:6;30208:29;:::i;:::-;30200:37;;30292:4;30286;30282:15;30274:23;;29996:308;;;:::o;30310:132::-;30377:4;30400:3;30392:11;;30430:4;30425:3;30421:14;30413:22;;30310:132;;;:::o;30448:114::-;30515:6;30549:5;30543:12;30533:22;;30448:114;;;:::o;30568:98::-;30619:6;30653:5;30647:12;30637:22;;30568:98;;;:::o;30672:99::-;30724:6;30758:5;30752:12;30742:22;;30672:99;;;:::o;30777:113::-;30847:4;30879;30874:3;30870:14;30862:22;;30777:113;;;:::o;30896:184::-;30995:11;31029:6;31024:3;31017:19;31069:4;31064:3;31060:14;31045:29;;30896:184;;;;:::o;31086:168::-;31169:11;31203:6;31198:3;31191:19;31243:4;31238:3;31234:14;31219:29;;31086:168;;;;:::o;31260:169::-;31344:11;31378:6;31373:3;31366:19;31418:4;31413:3;31409:14;31394:29;;31260:169;;;;:::o;31435:148::-;31537:11;31574:3;31559:18;;31435:148;;;;:::o;31589:305::-;31629:3;31648:20;31666:1;31648:20;:::i;:::-;31643:25;;31682:20;31700:1;31682:20;:::i;:::-;31677:25;;31836:1;31768:66;31764:74;31761:1;31758:81;31755:107;;;31842:18;;:::i;:::-;31755:107;31886:1;31883;31879:9;31872:16;;31589:305;;;;:::o;31900:185::-;31940:1;31957:20;31975:1;31957:20;:::i;:::-;31952:25;;31991:20;32009:1;31991:20;:::i;:::-;31986:25;;32030:1;32020:35;;32035:18;;:::i;:::-;32020:35;32077:1;32074;32070:9;32065:14;;31900:185;;;;:::o;32091:348::-;32131:7;32154:20;32172:1;32154:20;:::i;:::-;32149:25;;32188:20;32206:1;32188:20;:::i;:::-;32183:25;;32376:1;32308:66;32304:74;32301:1;32298:81;32293:1;32286:9;32279:17;32275:105;32272:131;;;32383:18;;:::i;:::-;32272:131;32431:1;32428;32424:9;32413:20;;32091:348;;;;:::o;32445:191::-;32485:4;32505:20;32523:1;32505:20;:::i;:::-;32500:25;;32539:20;32557:1;32539:20;:::i;:::-;32534:25;;32578:1;32575;32572:8;32569:34;;;32583:18;;:::i;:::-;32569:34;32628:1;32625;32621:9;32613:17;;32445:191;;;;:::o;32642:96::-;32679:7;32708:24;32726:5;32708:24;:::i;:::-;32697:35;;32642:96;;;:::o;32744:90::-;32778:7;32821:5;32814:13;32807:21;32796:32;;32744:90;;;:::o;32840:149::-;32876:7;32916:66;32909:5;32905:78;32894:89;;32840:149;;;:::o;32995:126::-;33032:7;33072:42;33065:5;33061:54;33050:65;;32995:126;;;:::o;33127:77::-;33164:7;33193:5;33182:16;;33127:77;;;:::o;33210:154::-;33294:6;33289:3;33284;33271:30;33356:1;33347:6;33342:3;33338:16;33331:27;33210:154;;;:::o;33370:307::-;33438:1;33448:113;33462:6;33459:1;33456:13;33448:113;;;33547:1;33542:3;33538:11;33532:18;33528:1;33523:3;33519:11;33512:39;33484:2;33481:1;33477:10;33472:15;;33448:113;;;33579:6;33576:1;33573:13;33570:101;;;33659:1;33650:6;33645:3;33641:16;33634:27;33570:101;33419:258;33370:307;;;:::o;33683:320::-;33727:6;33764:1;33758:4;33754:12;33744:22;;33811:1;33805:4;33801:12;33832:18;33822:81;;33888:4;33880:6;33876:17;33866:27;;33822:81;33950:2;33942:6;33939:14;33919:18;33916:38;33913:84;;;33969:18;;:::i;:::-;33913:84;33734:269;33683:320;;;:::o;34009:281::-;34092:27;34114:4;34092:27;:::i;:::-;34084:6;34080:40;34222:6;34210:10;34207:22;34186:18;34174:10;34171:34;34168:62;34165:88;;;34233:18;;:::i;:::-;34165:88;34273:10;34269:2;34262:22;34052:238;34009:281;;:::o;34296:233::-;34335:3;34358:24;34376:5;34358:24;:::i;:::-;34349:33;;34404:66;34397:5;34394:77;34391:103;;;34474:18;;:::i;:::-;34391:103;34521:1;34514:5;34510:13;34503:20;;34296:233;;;:::o;34535:79::-;34574:7;34603:5;34592:16;;34535:79;;;:::o;34620:176::-;34652:1;34669:20;34687:1;34669:20;:::i;:::-;34664:25;;34703:20;34721:1;34703:20;:::i;:::-;34698:25;;34742:1;34732:35;;34747:18;;:::i;:::-;34732:35;34788:1;34785;34781:9;34776:14;;34620:176;;;;:::o;34802:180::-;34850:77;34847:1;34840:88;34947:4;34944:1;34937:15;34971:4;34968:1;34961:15;34988:180;35036:77;35033:1;35026:88;35133:4;35130:1;35123:15;35157:4;35154:1;35147:15;35174:180;35222:77;35219:1;35212:88;35319:4;35316:1;35309:15;35343:4;35340:1;35333:15;35360:180;35408:77;35405:1;35398:88;35505:4;35502:1;35495:15;35529:4;35526:1;35519:15;35546:180;35594:77;35591:1;35584:88;35691:4;35688:1;35681:15;35715:4;35712:1;35705:15;35732:180;35780:77;35777:1;35770:88;35877:4;35874:1;35867:15;35901:4;35898:1;35891:15;35918:117;36027:1;36024;36017:12;36041:117;36150:1;36147;36140:12;36164:117;36273:1;36270;36263:12;36287:117;36396:1;36393;36386:12;36410:102;36451:6;36502:2;36498:7;36493:2;36486:5;36482:14;36478:28;36468:38;;36410:102;;;:::o;36518:230::-;36658:34;36654:1;36646:6;36642:14;36635:58;36727:13;36722:2;36714:6;36710:15;36703:38;36518:230;:::o;36754:237::-;36894:34;36890:1;36882:6;36878:14;36871:58;36963:20;36958:2;36950:6;36946:15;36939:45;36754:237;:::o;36997:178::-;37137:30;37133:1;37125:6;37121:14;37114:54;36997:178;:::o;37181:223::-;37321:34;37317:1;37309:6;37305:14;37298:58;37390:6;37385:2;37377:6;37373:15;37366:31;37181:223;:::o;37410:175::-;37550:27;37546:1;37538:6;37534:14;37527:51;37410:175;:::o;37591:231::-;37731:34;37727:1;37719:6;37715:14;37708:58;37800:14;37795:2;37787:6;37783:15;37776:39;37591:231;:::o;37828:243::-;37968:34;37964:1;37956:6;37952:14;37945:58;38037:26;38032:2;38024:6;38020:15;38013:51;37828:243;:::o;38077:229::-;38217:34;38213:1;38205:6;38201:14;38194:58;38286:12;38281:2;38273:6;38269:15;38262:37;38077:229;:::o;38312:228::-;38452:34;38448:1;38440:6;38436:14;38429:58;38521:11;38516:2;38508:6;38504:15;38497:36;38312:228;:::o;38546:182::-;38686:34;38682:1;38674:6;38670:14;38663:58;38546:182;:::o;38734:231::-;38874:34;38870:1;38862:6;38858:14;38851:58;38943:14;38938:2;38930:6;38926:15;38919:39;38734:231;:::o;38971:182::-;39111:34;39107:1;39099:6;39095:14;39088:58;38971:182;:::o;39159:167::-;39299:19;39295:1;39287:6;39283:14;39276:43;39159:167;:::o;39332:177::-;39472:29;39468:1;39460:6;39456:14;39449:53;39332:177;:::o;39515:228::-;39655:34;39651:1;39643:6;39639:14;39632:58;39724:11;39719:2;39711:6;39707:15;39700:36;39515:228;:::o;39749:234::-;39889:34;39885:1;39877:6;39873:14;39866:58;39958:17;39953:2;39945:6;39941:15;39934:42;39749:234;:::o;39989:170::-;40129:22;40125:1;40117:6;40113:14;40106:46;39989:170;:::o;40165:169::-;40305:21;40301:1;40293:6;40289:14;40282:45;40165:169;:::o;40340:220::-;40480:34;40476:1;40468:6;40464:14;40457:58;40549:3;40544:2;40536:6;40532:15;40525:28;40340:220;:::o;40566:236::-;40706:34;40702:1;40694:6;40690:14;40683:58;40775:19;40770:2;40762:6;40758:15;40751:44;40566:236;:::o;40808:231::-;40948:34;40944:1;40936:6;40932:14;40925:58;41017:14;41012:2;41004:6;41000:15;40993:39;40808:231;:::o;41045:122::-;41118:24;41136:5;41118:24;:::i;:::-;41111:5;41108:35;41098:63;;41157:1;41154;41147:12;41098:63;41045:122;:::o;41173:116::-;41243:21;41258:5;41243:21;:::i;:::-;41236:5;41233:32;41223:60;;41279:1;41276;41269:12;41223:60;41173:116;:::o;41295:120::-;41367:23;41384:5;41367:23;:::i;:::-;41360:5;41357:34;41347:62;;41405:1;41402;41395:12;41347:62;41295:120;:::o;41421:122::-;41494:24;41512:5;41494:24;:::i;:::-;41487:5;41484:35;41474:63;;41533:1;41530;41523:12;41474:63;41421:122;:::o

Swarm Source

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