ETH Price: $3,111.57 (+0.44%)
Gas: 4 Gwei

Token

Bored Ape Seeks Yacht Club #1 (BASYC01)
 

Overview

Max Total Supply

318 BASYC01

Holders

126

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
dawhat.eth
Balance
1 BASYC01
0xaB81377a955fD33034DB726bEbc7b610bFBdb156
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:
BoredApeSeeksYachtClub

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-04
*/

pragma solidity ^0.8.0;

interface IERC165 {
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

pragma solidity ^0.8.0;

interface IERC721 is IERC165 {
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    function balanceOf(address owner) external view returns (uint256 balance);

    function ownerOf(uint256 tokenId) external view returns (address owner);

    function safeTransferFrom(address from, address to, uint256 tokenId) external;

    function transferFrom(address from, address to, uint256 tokenId) external;

    function approve(address to, uint256 tokenId) external;

    function getApproved(uint256 tokenId) external view returns (address operator);

    function setApprovalForAll(address operator, bool _approved) external;

    function isApprovedForAll(address owner, address operator) external view returns (bool);

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
}

pragma solidity ^0.8.0;

interface IERC721Receiver {
    function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4);
}

pragma solidity ^0.8.0;


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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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

                // solhint-disable-next-line no-inline-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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[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}. 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 {
                    // solhint-disable-next-line no-inline-assembly
                    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` 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 { }
}

// 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: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

pragma solidity ^0.8.0;

abstract contract BAM {
  function ownerOf(uint256 tokenId) public virtual view returns (address);
  function tokenOfOwnerByIndex(address owner, uint256 index) public virtual view returns (uint256);
  function balanceOf(address owner) external virtual view returns (uint256 balance);
}

abstract contract APES {
  function ownerOf(uint256 tokenId) public virtual view returns (address);
  function tokenOfOwnerByIndex(address owner, uint256 index) public virtual view returns (uint256);
  function balanceOf(address owner) external virtual view returns (uint256 balance);
}

abstract contract BASYC {
  function ownerOf(uint256 tokenId) public virtual view returns (address);
  function tokenOfOwnerByIndex(address owner, uint256 index) public virtual view returns (uint256);
  function balanceOf(address owner) external virtual view returns (uint256 balance);
}

contract BoredApeSeeksYachtClub is ERC721Enumerable, Ownable {
  BAM private bam;
  APES private apes;
  BASYC private basyc;

  uint256 public saleIsActive;
  uint256 public preSaleIsActive;
  uint256 public prePreSaleIsActive;
  uint256 public maxIssues;
  string private baseURI;
  address public bamAddress;
  address public apesAddress;
  address public BASYCAddress;
  uint256 public reservedCounter;
  uint256 public maxReserved;
  uint256 public issuePrice;
  uint256 public preSaleCounter;
  uint256 public tokenCounter;
  uint256 public maxMint;

  constructor() ERC721("Bored Ape Seeks Yacht Club #1", "BASYC01") { 
    bamAddress = 0x180c8b3260b786c1e6191883be5385f0117737B9;
    apesAddress = 0x495f947276749Ce646f68AC8c248420045cb7b5e;
    BASYCAddress = 0xe3b5DA60eE5F7B4b6b1ed418C3f09Ded9CA2F95C;
    maxIssues = 5636;
    maxMint = 15;
    bam = BAM(bamAddress);
    apes = APES(apesAddress);
    basyc = BASYC(BASYCAddress);
    saleIsActive = 0;
    preSaleIsActive = 0;
    reservedCounter = 0;
    maxReserved = 36;
    issuePrice = 30000000000000000;
    preSaleCounter = 0;
    tokenCounter = 0;
    baseURI = "";
  }

  function isMinted(uint256 tokenId) external view returns (bool) {
    require(tokenId < maxIssues, "tokenId outside collection bounds");

    return _exists(tokenId);
  }

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

  function setBaseURI(string memory uri) public onlyOwner {
    baseURI = uri;
  }

  function mintReservedIssue(uint256 numberOfTokens) public onlyOwner {
    require(numberOfTokens <= maxReserved, "Can only mint 36 Issues at a time");
    require((reservedCounter + numberOfTokens) <= maxReserved, "Purchase would exceed max supply of Issues");
    
    for(uint i = 0; i < numberOfTokens; i++) {
      _safeMint(msg.sender, (tokenCounter + 1));
      reservedCounter = reservedCounter + 1;
      tokenCounter = tokenCounter + 1;
    }
  }

  function mintIssue(uint256 numberOfTokens) public payable {
    require(numberOfTokens <= maxMint, "Can only mint 15 Issues at a time");
    require(saleIsActive == 1, "Sale must be active to mint an Issue");
    require((totalSupply() + numberOfTokens) <= maxIssues, "Purchase would exceed max supply of Issues");
    require((issuePrice * numberOfTokens) <= msg.value, "Too little ETH send");

    for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = tokenCounter + 1;
            _safeMint(msg.sender, mintIndex);
            tokenCounter = tokenCounter + 1;
        }
  }

  function preMintIssueBam(uint256 numberOfTokens, uint256 id) public payable {
    require(numberOfTokens <= maxMint, "Can only mint 15 Issues at a time");
    require(saleIsActive == 1, "Sale must be active to mint an Issue");
    require((totalSupply() + numberOfTokens) <= maxIssues, "Purchase would exceed max supply of Issues");
    require((issuePrice * numberOfTokens) <= msg.value, "Too little ETH send");
    require(bam.ownerOf(id) == msg.sender, "Must own an ape maffia to mint a issue");

    for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = tokenCounter + 1;
            _safeMint(msg.sender, mintIndex);
            tokenCounter = tokenCounter + 1;
        }
  }
  function preMintIssueApes(uint256 numberOfTokens, uint256 id) public payable {
    require(numberOfTokens <= maxMint, "Can only mint 15 Issues at a time");
    require(saleIsActive == 1, "Sale must be active to mint an Issue");
    require((totalSupply() + numberOfTokens) <= maxIssues, "Purchase would exceed max supply of Issues");
    require((issuePrice * numberOfTokens) <= msg.value, "Too little ETH send");
    require(apes.ownerOf(id) == msg.sender, "Must own an ape to mint a issue");

    for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = tokenCounter + 1;
            _safeMint(msg.sender, mintIndex);
            tokenCounter = tokenCounter + 1;
        }
  }

  function preMintIssueBasyc(uint256 numberOfTokens, uint256 id) public payable {
    require(numberOfTokens <= maxMint, "Can only mint 15 Issues at a time");
    require(saleIsActive == 1, "Sale must be active to mint an Issue");
    require((totalSupply() + numberOfTokens) <= maxIssues, "Purchase would exceed max supply of Issues");
    require((issuePrice * numberOfTokens) <= msg.value, "Too little ETH send");
    require(basyc.ownerOf(id) == msg.sender, "Must own an basyc issue to mint a issue");

    for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = tokenCounter + 1;
            _safeMint(msg.sender, mintIndex);
            tokenCounter = tokenCounter + 1;
        }
  }


    function flipSale(uint256 _saleState) public onlyOwner {
      saleIsActive = _saleState;
  }
    function flipPreSale(uint256 _saleState) public onlyOwner {
      preSaleIsActive = _saleState;
  }
    function withdraw() public payable onlyOwner{
      uint balance = address(this).balance;
      payable(msg.sender).transfer(balance);
    }
    function setPrice(uint256 _newprice) public onlyOwner{
      issuePrice = _newprice;
    }
    function burn(uint256 id) public payable {
      _burn(id);
    }
}

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":"BASYCAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"apesAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"bamAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleState","type":"uint256"}],"name":"flipPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleState","type":"uint256"}],"name":"flipSale","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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"issuePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxIssues","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxReserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintIssue","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintReservedIssue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"preMintIssueApes","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"preMintIssueBam","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"preMintIssueBasyc","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"prePreSaleIsActive","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleIsActive","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedCounter","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":"uint256","name":"","type":"uint256"}],"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":"uri","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":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenCounter","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280601d81526020017f426f72656420417065205365656b7320596163687420436c75622023310000008152506040518060400160405280600781526020017f424153594330310000000000000000000000000000000000000000000000000081525081600090805190602001906200009692919062000410565b508060019080519060200190620000af92919062000410565b5050506000620000c46200040860201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35073180c8b3260b786c1e6191883be5385f0117737b9601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073495f947276749ce646f68ac8c248420045cb7b5e601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073e3b5da60ee5f7b4b6b1ed418c3f09ded9ca2f95c601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611604601181905550600f601b81905550601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600e819055506000600f8190555060006016819055506024601781905550666a94d74f43000060188190555060006019819055506000601a8190555060405180602001604052806000815250601290805190602001906200040192919062000410565b5062000525565b600033905090565b8280546200041e90620004ef565b90600052602060002090601f0160209004810192826200044257600085556200048e565b82601f106200045d57805160ff19168380011785556200048e565b828001600101855582156200048e579182015b828111156200048d57825182559160200191906001019062000470565b5b5090506200049d9190620004a1565b5090565b5b80821115620004bc576000816000905550600101620004a2565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200050857607f821691505b602082108114156200051f576200051e620004c0565b5b50919050565b6150ce80620005356000396000f3fe6080604052600436106102675760003560e01c80636352211e1161014457806399fdda84116100b6578063b88d4fde1161007a578063b88d4fde146108ba578063c87b56dd146108e3578063d082e38114610920578063e985e9c51461094b578063eb8d244414610988578063f2fde38b146109b357610267565b806399fdda8414610805578063a1fc45f814610821578063a22cb4651461084a578063a85a88b114610873578063a9898fd91461088f57610267565b80637501f741116101085780637501f741146107075780638a614392146107325780638da5cb5b1461075d57806391b7f5ed1461078857806395d89b41146107b157806396596532146107dc57610267565b80636352211e146106205780636c902f171461065d57806370a0823114610688578063715018a6146106c5578063730f4703146106dc57610267565b80632f745c59116101dd57806342966c68116101a157806342966c681461052c57806342b7ab61146105485780634f6ccce714610564578063557fd5c6146105a157806355f804b3146105cc5780635c2c2005146105f557610267565b80632f745c591461045457806333c41a90146104915780633ccfd60b146104ce5780633ffdee8e146104d857806342842e0e1461050357610267565b8063081812fc1161022f578063081812fc14610353578063095ea7b31461039057806318160ddd146103b95780631f0234d8146103e45780631f1f83df1461040f57806323b872dd1461042b57610267565b806301ffc9a71461026c57806304285a0c146102a9578063049f21e3146102d45780630596ee51146102fd57806306fdde0314610328575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613764565b6109dc565b6040516102a091906137ac565b60405180910390f35b3480156102b557600080fd5b506102be610a56565b6040516102cb91906137e0565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613827565b610a5c565b005b34801561030957600080fd5b50610312610ae2565b60405161031f91906137e0565b60405180910390f35b34801561033457600080fd5b5061033d610ae8565b60405161034a91906138ed565b60405180910390f35b34801561035f57600080fd5b5061037a60048036038101906103759190613827565b610b7a565b6040516103879190613950565b60405180910390f35b34801561039c57600080fd5b506103b760048036038101906103b29190613997565b610bff565b005b3480156103c557600080fd5b506103ce610d17565b6040516103db91906137e0565b60405180910390f35b3480156103f057600080fd5b506103f9610d24565b60405161040691906137e0565b60405180910390f35b610429600480360381019061042491906139d7565b610d2a565b005b34801561043757600080fd5b50610452600480360381019061044d9190613a17565b610fc9565b005b34801561046057600080fd5b5061047b60048036038101906104769190613997565b611029565b60405161048891906137e0565b60405180910390f35b34801561049d57600080fd5b506104b860048036038101906104b39190613827565b6110ce565b6040516104c591906137ac565b60405180910390f35b6104d6611124565b005b3480156104e457600080fd5b506104ed6111ef565b6040516104fa91906137e0565b60405180910390f35b34801561050f57600080fd5b5061052a60048036038101906105259190613a17565b6111f5565b005b61054660048036038101906105419190613827565b611215565b005b610562600480360381019061055d91906139d7565b611221565b005b34801561057057600080fd5b5061058b60048036038101906105869190613827565b6114c0565b60405161059891906137e0565b60405180910390f35b3480156105ad57600080fd5b506105b6611531565b6040516105c39190613950565b60405180910390f35b3480156105d857600080fd5b506105f360048036038101906105ee9190613b9f565b611557565b005b34801561060157600080fd5b5061060a6115ed565b60405161061791906137e0565b60405180910390f35b34801561062c57600080fd5b5061064760048036038101906106429190613827565b6115f3565b6040516106549190613950565b60405180910390f35b34801561066957600080fd5b506106726116a5565b60405161067f91906137e0565b60405180910390f35b34801561069457600080fd5b506106af60048036038101906106aa9190613be8565b6116ab565b6040516106bc91906137e0565b60405180910390f35b3480156106d157600080fd5b506106da611763565b005b3480156106e857600080fd5b506106f16118a0565b6040516106fe9190613950565b60405180910390f35b34801561071357600080fd5b5061071c6118c6565b60405161072991906137e0565b60405180910390f35b34801561073e57600080fd5b506107476118cc565b6040516107549190613950565b60405180910390f35b34801561076957600080fd5b506107726118f2565b60405161077f9190613950565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa9190613827565b61191c565b005b3480156107bd57600080fd5b506107c66119a2565b6040516107d391906138ed565b60405180910390f35b3480156107e857600080fd5b5061080360048036038101906107fe9190613827565b611a34565b005b61081f600480360381019061081a91906139d7565b611aba565b005b34801561082d57600080fd5b5061084860048036038101906108439190613827565b611d59565b005b34801561085657600080fd5b50610871600480360381019061086c9190613c41565b611ed0565b005b61088d60048036038101906108889190613827565b612051565b005b34801561089b57600080fd5b506108a46121d7565b6040516108b191906137e0565b60405180910390f35b3480156108c657600080fd5b506108e160048036038101906108dc9190613d22565b6121dd565b005b3480156108ef57600080fd5b5061090a60048036038101906109059190613827565b61223f565b60405161091791906138ed565b60405180910390f35b34801561092c57600080fd5b506109356122e6565b60405161094291906137e0565b60405180910390f35b34801561095757600080fd5b50610972600480360381019061096d9190613da5565b6122ec565b60405161097f91906137ac565b60405180910390f35b34801561099457600080fd5b5061099d612380565b6040516109aa91906137e0565b60405180910390f35b3480156109bf57600080fd5b506109da60048036038101906109d59190613be8565b612386565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4f5750610a4e82612532565b5b9050919050565b60165481565b610a64612614565b73ffffffffffffffffffffffffffffffffffffffff16610a826118f2565b73ffffffffffffffffffffffffffffffffffffffff1614610ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acf90613e31565b60405180910390fd5b80600f8190555050565b60105481565b606060008054610af790613e80565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2390613e80565b8015610b705780601f10610b4557610100808354040283529160200191610b70565b820191906000526020600020905b815481529060010190602001808311610b5357829003601f168201915b5050505050905090565b6000610b858261261c565b610bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbb90613f24565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c0a826115f3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7290613fb6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c9a612614565b73ffffffffffffffffffffffffffffffffffffffff161480610cc95750610cc881610cc3612614565b6122ec565b5b610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff90614048565b60405180910390fd5b610d128383612688565b505050565b6000600880549050905090565b600f5481565b601b54821115610d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d66906140da565b60405180910390fd5b6001600e5414610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab9061416c565b60405180910390fd5b60115482610dc0610d17565b610dca91906141bb565b1115610e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0290614283565b60405180910390fd5b3482601854610e1a91906142a3565b1115610e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5290614349565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401610ecd91906137e0565b60206040518083038186803b158015610ee557600080fd5b505afa158015610ef9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1d919061437e565b73ffffffffffffffffffffffffffffffffffffffff1614610f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6a9061441d565b60405180910390fd5b60005b82811015610fc45760006001601a54610f8f91906141bb565b9050610f9b3382612741565b6001601a54610faa91906141bb565b601a81905550508080610fbc9061443d565b915050610f76565b505050565b610fda610fd4612614565b8261275f565b611019576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611010906144f8565b60405180910390fd5b61102483838361283d565b505050565b6000611034836116ab565b8210611075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106c9061458a565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60006011548210611114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110b9061461c565b60405180910390fd5b61111d8261261c565b9050919050565b61112c612614565b73ffffffffffffffffffffffffffffffffffffffff1661114a6118f2565b73ffffffffffffffffffffffffffffffffffffffff16146111a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119790613e31565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156111eb573d6000803e3d6000fd5b5050565b60115481565b611210838383604051806020016040528060008152506121dd565b505050565b61121e81612a99565b50565b601b54821115611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d906140da565b60405180910390fd5b6001600e54146112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a29061416c565b60405180910390fd5b601154826112b7610d17565b6112c191906141bb565b1115611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f990614283565b60405180910390fd5b348260185461131191906142a3565b1115611352576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134990614349565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016113c491906137e0565b60206040518083038186803b1580156113dc57600080fd5b505afa1580156113f0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611414919061437e565b73ffffffffffffffffffffffffffffffffffffffff161461146a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611461906146ae565b60405180910390fd5b60005b828110156114bb5760006001601a5461148691906141bb565b90506114923382612741565b6001601a546114a191906141bb565b601a819055505080806114b39061443d565b91505061146d565b505050565b60006114ca610d17565b821061150b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150290614740565b60405180910390fd5b6008828154811061151f5761151e614760565b5b90600052602060002001549050919050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61155f612614565b73ffffffffffffffffffffffffffffffffffffffff1661157d6118f2565b73ffffffffffffffffffffffffffffffffffffffff16146115d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ca90613e31565b60405180910390fd5b80601290805190602001906115e9929190613655565b5050565b60185481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561169c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169390614801565b60405180910390fd5b80915050919050565b60195481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561171c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171390614893565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61176b612614565b73ffffffffffffffffffffffffffffffffffffffff166117896118f2565b73ffffffffffffffffffffffffffffffffffffffff16146117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d690613e31565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601b5481565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611924612614565b73ffffffffffffffffffffffffffffffffffffffff166119426118f2565b73ffffffffffffffffffffffffffffffffffffffff1614611998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198f90613e31565b60405180910390fd5b8060188190555050565b6060600180546119b190613e80565b80601f01602080910402602001604051908101604052809291908181526020018280546119dd90613e80565b8015611a2a5780601f106119ff57610100808354040283529160200191611a2a565b820191906000526020600020905b815481529060010190602001808311611a0d57829003601f168201915b5050505050905090565b611a3c612614565b73ffffffffffffffffffffffffffffffffffffffff16611a5a6118f2565b73ffffffffffffffffffffffffffffffffffffffff1614611ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa790613e31565b60405180910390fd5b80600e8190555050565b601b54821115611aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af6906140da565b60405180910390fd5b6001600e5414611b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3b9061416c565b60405180910390fd5b60115482611b50610d17565b611b5a91906141bb565b1115611b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9290614283565b60405180910390fd5b3482601854611baa91906142a3565b1115611beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be290614349565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401611c5d91906137e0565b60206040518083038186803b158015611c7557600080fd5b505afa158015611c89573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cad919061437e565b73ffffffffffffffffffffffffffffffffffffffff1614611d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfa906148ff565b60405180910390fd5b60005b82811015611d545760006001601a54611d1f91906141bb565b9050611d2b3382612741565b6001601a54611d3a91906141bb565b601a81905550508080611d4c9061443d565b915050611d06565b505050565b611d61612614565b73ffffffffffffffffffffffffffffffffffffffff16611d7f6118f2565b73ffffffffffffffffffffffffffffffffffffffff1614611dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcc90613e31565b60405180910390fd5b601754811115611e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1190614991565b60405180910390fd5b60175481601654611e2b91906141bb565b1115611e6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6390614283565b60405180910390fd5b60005b81811015611ecc57611e8f336001601a54611e8a91906141bb565b612741565b6001601654611e9e91906141bb565b6016819055506001601a54611eb391906141bb565b601a819055508080611ec49061443d565b915050611e6f565b5050565b611ed8612614565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3d906149fd565b60405180910390fd5b8060056000611f53612614565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612000612614565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161204591906137ac565b60405180910390a35050565b601b54811115612096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208d906140da565b60405180910390fd5b6001600e54146120db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d29061416c565b60405180910390fd5b601154816120e7610d17565b6120f191906141bb565b1115612132576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212990614283565b60405180910390fd5b348160185461214191906142a3565b1115612182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217990614349565b60405180910390fd5b60005b818110156121d35760006001601a5461219e91906141bb565b90506121aa3382612741565b6001601a546121b991906141bb565b601a819055505080806121cb9061443d565b915050612185565b5050565b60175481565b6121ee6121e8612614565b8361275f565b61222d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612224906144f8565b60405180910390fd5b61223984848484612baa565b50505050565b606061224a8261261c565b612289576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228090614a8f565b60405180910390fd5b6000612293612c06565b905060008151116122b357604051806020016040528060008152506122de565b806122bd84612c98565b6040516020016122ce929190614aeb565b6040516020818303038152906040525b915050919050565b601a5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e5481565b61238e612614565b73ffffffffffffffffffffffffffffffffffffffff166123ac6118f2565b73ffffffffffffffffffffffffffffffffffffffff1614612402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f990613e31565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612472576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246990614b81565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806125fd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061260d575061260c82612df9565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126fb836115f3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61275b828260405180602001604052806000815250612e63565b5050565b600061276a8261261c565b6127a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a090614c13565b60405180910390fd5b60006127b4836115f3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061282357508373ffffffffffffffffffffffffffffffffffffffff1661280b84610b7a565b73ffffffffffffffffffffffffffffffffffffffff16145b80612834575061283381856122ec565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661285d826115f3565b73ffffffffffffffffffffffffffffffffffffffff16146128b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128aa90614ca5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291a90614d37565b60405180910390fd5b61292e838383612ebe565b612939600082612688565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129899190614d57565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129e091906141bb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612aa4826115f3565b9050612ab281600084612ebe565b612abd600083612688565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b0d9190614d57565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b612bb584848461283d565b612bc184848484612fd2565b612c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf790614dfd565b60405180910390fd5b50505050565b606060128054612c1590613e80565b80601f0160208091040260200160405190810160405280929190818152602001828054612c4190613e80565b8015612c8e5780601f10612c6357610100808354040283529160200191612c8e565b820191906000526020600020905b815481529060010190602001808311612c7157829003601f168201915b5050505050905090565b60606000821415612ce0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612df4565b600082905060005b60008214612d12578080612cfb9061443d565b915050600a82612d0b9190614e4c565b9150612ce8565b60008167ffffffffffffffff811115612d2e57612d2d613a74565b5b6040519080825280601f01601f191660200182016040528015612d605781602001600182028036833780820191505090505b5090505b60008514612ded57600182612d799190614d57565b9150600a85612d889190614e7d565b6030612d9491906141bb565b60f81b818381518110612daa57612da9614760565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612de69190614e4c565b9450612d64565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612e6d8383613169565b612e7a6000848484612fd2565b612eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb090614dfd565b60405180910390fd5b505050565b612ec9838383613337565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f0c57612f078161333c565b612f4b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612f4a57612f498382613385565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f8e57612f89816134f2565b612fcd565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612fcc57612fcb82826135c3565b5b5b505050565b6000612ff38473ffffffffffffffffffffffffffffffffffffffff16613642565b1561315c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261301c612614565b8786866040518563ffffffff1660e01b815260040161303e9493929190614f03565b602060405180830381600087803b15801561305857600080fd5b505af192505050801561308957506040513d601f19601f820116820180604052508101906130869190614f64565b60015b61310c573d80600081146130b9576040519150601f19603f3d011682016040523d82523d6000602084013e6130be565b606091505b50600081511415613104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130fb90614dfd565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613161565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131d090614fdd565b60405180910390fd5b6131e28161261c565b15613222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321990615049565b60405180910390fd5b61322e60008383612ebe565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461327e91906141bb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613392846116ab565b61339c9190614d57565b9050600060076000848152602001908152602001600020549050818114613481576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506135069190614d57565b905060006009600084815260200190815260200160002054905060006008838154811061353657613535614760565b5b90600052602060002001549050806008838154811061355857613557614760565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806135a7576135a6615069565b5b6001900381819060005260206000200160009055905550505050565b60006135ce836116ab565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b82805461366190613e80565b90600052602060002090601f01602090048101928261368357600085556136ca565b82601f1061369c57805160ff19168380011785556136ca565b828001600101855582156136ca579182015b828111156136c95782518255916020019190600101906136ae565b5b5090506136d791906136db565b5090565b5b808211156136f45760008160009055506001016136dc565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137418161370c565b811461374c57600080fd5b50565b60008135905061375e81613738565b92915050565b60006020828403121561377a57613779613702565b5b60006137888482850161374f565b91505092915050565b60008115159050919050565b6137a681613791565b82525050565b60006020820190506137c1600083018461379d565b92915050565b6000819050919050565b6137da816137c7565b82525050565b60006020820190506137f560008301846137d1565b92915050565b613804816137c7565b811461380f57600080fd5b50565b600081359050613821816137fb565b92915050565b60006020828403121561383d5761383c613702565b5b600061384b84828501613812565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561388e578082015181840152602081019050613873565b8381111561389d576000848401525b50505050565b6000601f19601f8301169050919050565b60006138bf82613854565b6138c9818561385f565b93506138d9818560208601613870565b6138e2816138a3565b840191505092915050565b6000602082019050818103600083015261390781846138b4565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061393a8261390f565b9050919050565b61394a8161392f565b82525050565b60006020820190506139656000830184613941565b92915050565b6139748161392f565b811461397f57600080fd5b50565b6000813590506139918161396b565b92915050565b600080604083850312156139ae576139ad613702565b5b60006139bc85828601613982565b92505060206139cd85828601613812565b9150509250929050565b600080604083850312156139ee576139ed613702565b5b60006139fc85828601613812565b9250506020613a0d85828601613812565b9150509250929050565b600080600060608486031215613a3057613a2f613702565b5b6000613a3e86828701613982565b9350506020613a4f86828701613982565b9250506040613a6086828701613812565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613aac826138a3565b810181811067ffffffffffffffff82111715613acb57613aca613a74565b5b80604052505050565b6000613ade6136f8565b9050613aea8282613aa3565b919050565b600067ffffffffffffffff821115613b0a57613b09613a74565b5b613b13826138a3565b9050602081019050919050565b82818337600083830152505050565b6000613b42613b3d84613aef565b613ad4565b905082815260208101848484011115613b5e57613b5d613a6f565b5b613b69848285613b20565b509392505050565b600082601f830112613b8657613b85613a6a565b5b8135613b96848260208601613b2f565b91505092915050565b600060208284031215613bb557613bb4613702565b5b600082013567ffffffffffffffff811115613bd357613bd2613707565b5b613bdf84828501613b71565b91505092915050565b600060208284031215613bfe57613bfd613702565b5b6000613c0c84828501613982565b91505092915050565b613c1e81613791565b8114613c2957600080fd5b50565b600081359050613c3b81613c15565b92915050565b60008060408385031215613c5857613c57613702565b5b6000613c6685828601613982565b9250506020613c7785828601613c2c565b9150509250929050565b600067ffffffffffffffff821115613c9c57613c9b613a74565b5b613ca5826138a3565b9050602081019050919050565b6000613cc5613cc084613c81565b613ad4565b905082815260208101848484011115613ce157613ce0613a6f565b5b613cec848285613b20565b509392505050565b600082601f830112613d0957613d08613a6a565b5b8135613d19848260208601613cb2565b91505092915050565b60008060008060808587031215613d3c57613d3b613702565b5b6000613d4a87828801613982565b9450506020613d5b87828801613982565b9350506040613d6c87828801613812565b925050606085013567ffffffffffffffff811115613d8d57613d8c613707565b5b613d9987828801613cf4565b91505092959194509250565b60008060408385031215613dbc57613dbb613702565b5b6000613dca85828601613982565b9250506020613ddb85828601613982565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e1b60208361385f565b9150613e2682613de5565b602082019050919050565b60006020820190508181036000830152613e4a81613e0e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613e9857607f821691505b60208210811415613eac57613eab613e51565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613f0e602c8361385f565b9150613f1982613eb2565b604082019050919050565b60006020820190508181036000830152613f3d81613f01565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613fa060218361385f565b9150613fab82613f44565b604082019050919050565b60006020820190508181036000830152613fcf81613f93565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061403260388361385f565b915061403d82613fd6565b604082019050919050565b6000602082019050818103600083015261406181614025565b9050919050565b7f43616e206f6e6c79206d696e742031352049737375657320617420612074696d60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b60006140c460218361385f565b91506140cf82614068565b604082019050919050565b600060208201905081810360008301526140f3816140b7565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e7420616e204960008201527f7373756500000000000000000000000000000000000000000000000000000000602082015250565b600061415660248361385f565b9150614161826140fa565b604082019050919050565b6000602082019050818103600083015261418581614149565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006141c6826137c7565b91506141d1836137c7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142065761420561418c565b5b828201905092915050565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f662049737375657300000000000000000000000000000000000000000000602082015250565b600061426d602a8361385f565b915061427882614211565b604082019050919050565b6000602082019050818103600083015261429c81614260565b9050919050565b60006142ae826137c7565b91506142b9836137c7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142f2576142f161418c565b5b828202905092915050565b7f546f6f206c6974746c65204554482073656e6400000000000000000000000000600082015250565b600061433360138361385f565b915061433e826142fd565b602082019050919050565b6000602082019050818103600083015261436281614326565b9050919050565b6000815190506143788161396b565b92915050565b60006020828403121561439457614393613702565b5b60006143a284828501614369565b91505092915050565b7f4d757374206f776e20616e20626173796320697373756520746f206d696e742060008201527f6120697373756500000000000000000000000000000000000000000000000000602082015250565b600061440760278361385f565b9150614412826143ab565b604082019050919050565b60006020820190508181036000830152614436816143fa565b9050919050565b6000614448826137c7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561447b5761447a61418c565b5b600182019050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006144e260318361385f565b91506144ed82614486565b604082019050919050565b60006020820190508181036000830152614511816144d5565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614574602b8361385f565b915061457f82614518565b604082019050919050565b600060208201905081810360008301526145a381614567565b9050919050565b7f746f6b656e4964206f75747369646520636f6c6c656374696f6e20626f756e6460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061460660218361385f565b9150614611826145aa565b604082019050919050565b60006020820190508181036000830152614635816145f9565b9050919050565b7f4d757374206f776e20616e20617065206d616666696120746f206d696e74206160008201527f2069737375650000000000000000000000000000000000000000000000000000602082015250565b600061469860268361385f565b91506146a38261463c565b604082019050919050565b600060208201905081810360008301526146c78161468b565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b600061472a602c8361385f565b9150614735826146ce565b604082019050919050565b600060208201905081810360008301526147598161471d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006147eb60298361385f565b91506147f68261478f565b604082019050919050565b6000602082019050818103600083015261481a816147de565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061487d602a8361385f565b915061488882614821565b604082019050919050565b600060208201905081810360008301526148ac81614870565b9050919050565b7f4d757374206f776e20616e2061706520746f206d696e74206120697373756500600082015250565b60006148e9601f8361385f565b91506148f4826148b3565b602082019050919050565b60006020820190508181036000830152614918816148dc565b9050919050565b7f43616e206f6e6c79206d696e742033362049737375657320617420612074696d60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b600061497b60218361385f565b91506149868261491f565b604082019050919050565b600060208201905081810360008301526149aa8161496e565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006149e760198361385f565b91506149f2826149b1565b602082019050919050565b60006020820190508181036000830152614a16816149da565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614a79602f8361385f565b9150614a8482614a1d565b604082019050919050565b60006020820190508181036000830152614aa881614a6c565b9050919050565b600081905092915050565b6000614ac582613854565b614acf8185614aaf565b9350614adf818560208601613870565b80840191505092915050565b6000614af78285614aba565b9150614b038284614aba565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614b6b60268361385f565b9150614b7682614b0f565b604082019050919050565b60006020820190508181036000830152614b9a81614b5e565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614bfd602c8361385f565b9150614c0882614ba1565b604082019050919050565b60006020820190508181036000830152614c2c81614bf0565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614c8f60298361385f565b9150614c9a82614c33565b604082019050919050565b60006020820190508181036000830152614cbe81614c82565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614d2160248361385f565b9150614d2c82614cc5565b604082019050919050565b60006020820190508181036000830152614d5081614d14565b9050919050565b6000614d62826137c7565b9150614d6d836137c7565b925082821015614d8057614d7f61418c565b5b828203905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614de760328361385f565b9150614df282614d8b565b604082019050919050565b60006020820190508181036000830152614e1681614dda565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614e57826137c7565b9150614e62836137c7565b925082614e7257614e71614e1d565b5b828204905092915050565b6000614e88826137c7565b9150614e93836137c7565b925082614ea357614ea2614e1d565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614ed582614eae565b614edf8185614eb9565b9350614eef818560208601613870565b614ef8816138a3565b840191505092915050565b6000608082019050614f186000830187613941565b614f256020830186613941565b614f3260408301856137d1565b8181036060830152614f448184614eca565b905095945050505050565b600081519050614f5e81613738565b92915050565b600060208284031215614f7a57614f79613702565b5b6000614f8884828501614f4f565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614fc760208361385f565b9150614fd282614f91565b602082019050919050565b60006020820190508181036000830152614ff681614fba565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615033601c8361385f565b915061503e82614ffd565b602082019050919050565b6000602082019050818103600083015261506281615026565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220bd1836d481213c87e3c5d270bbdb2c6cc049159ef97f169fa1128a94fe3f9ee364736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102675760003560e01c80636352211e1161014457806399fdda84116100b6578063b88d4fde1161007a578063b88d4fde146108ba578063c87b56dd146108e3578063d082e38114610920578063e985e9c51461094b578063eb8d244414610988578063f2fde38b146109b357610267565b806399fdda8414610805578063a1fc45f814610821578063a22cb4651461084a578063a85a88b114610873578063a9898fd91461088f57610267565b80637501f741116101085780637501f741146107075780638a614392146107325780638da5cb5b1461075d57806391b7f5ed1461078857806395d89b41146107b157806396596532146107dc57610267565b80636352211e146106205780636c902f171461065d57806370a0823114610688578063715018a6146106c5578063730f4703146106dc57610267565b80632f745c59116101dd57806342966c68116101a157806342966c681461052c57806342b7ab61146105485780634f6ccce714610564578063557fd5c6146105a157806355f804b3146105cc5780635c2c2005146105f557610267565b80632f745c591461045457806333c41a90146104915780633ccfd60b146104ce5780633ffdee8e146104d857806342842e0e1461050357610267565b8063081812fc1161022f578063081812fc14610353578063095ea7b31461039057806318160ddd146103b95780631f0234d8146103e45780631f1f83df1461040f57806323b872dd1461042b57610267565b806301ffc9a71461026c57806304285a0c146102a9578063049f21e3146102d45780630596ee51146102fd57806306fdde0314610328575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613764565b6109dc565b6040516102a091906137ac565b60405180910390f35b3480156102b557600080fd5b506102be610a56565b6040516102cb91906137e0565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613827565b610a5c565b005b34801561030957600080fd5b50610312610ae2565b60405161031f91906137e0565b60405180910390f35b34801561033457600080fd5b5061033d610ae8565b60405161034a91906138ed565b60405180910390f35b34801561035f57600080fd5b5061037a60048036038101906103759190613827565b610b7a565b6040516103879190613950565b60405180910390f35b34801561039c57600080fd5b506103b760048036038101906103b29190613997565b610bff565b005b3480156103c557600080fd5b506103ce610d17565b6040516103db91906137e0565b60405180910390f35b3480156103f057600080fd5b506103f9610d24565b60405161040691906137e0565b60405180910390f35b610429600480360381019061042491906139d7565b610d2a565b005b34801561043757600080fd5b50610452600480360381019061044d9190613a17565b610fc9565b005b34801561046057600080fd5b5061047b60048036038101906104769190613997565b611029565b60405161048891906137e0565b60405180910390f35b34801561049d57600080fd5b506104b860048036038101906104b39190613827565b6110ce565b6040516104c591906137ac565b60405180910390f35b6104d6611124565b005b3480156104e457600080fd5b506104ed6111ef565b6040516104fa91906137e0565b60405180910390f35b34801561050f57600080fd5b5061052a60048036038101906105259190613a17565b6111f5565b005b61054660048036038101906105419190613827565b611215565b005b610562600480360381019061055d91906139d7565b611221565b005b34801561057057600080fd5b5061058b60048036038101906105869190613827565b6114c0565b60405161059891906137e0565b60405180910390f35b3480156105ad57600080fd5b506105b6611531565b6040516105c39190613950565b60405180910390f35b3480156105d857600080fd5b506105f360048036038101906105ee9190613b9f565b611557565b005b34801561060157600080fd5b5061060a6115ed565b60405161061791906137e0565b60405180910390f35b34801561062c57600080fd5b5061064760048036038101906106429190613827565b6115f3565b6040516106549190613950565b60405180910390f35b34801561066957600080fd5b506106726116a5565b60405161067f91906137e0565b60405180910390f35b34801561069457600080fd5b506106af60048036038101906106aa9190613be8565b6116ab565b6040516106bc91906137e0565b60405180910390f35b3480156106d157600080fd5b506106da611763565b005b3480156106e857600080fd5b506106f16118a0565b6040516106fe9190613950565b60405180910390f35b34801561071357600080fd5b5061071c6118c6565b60405161072991906137e0565b60405180910390f35b34801561073e57600080fd5b506107476118cc565b6040516107549190613950565b60405180910390f35b34801561076957600080fd5b506107726118f2565b60405161077f9190613950565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa9190613827565b61191c565b005b3480156107bd57600080fd5b506107c66119a2565b6040516107d391906138ed565b60405180910390f35b3480156107e857600080fd5b5061080360048036038101906107fe9190613827565b611a34565b005b61081f600480360381019061081a91906139d7565b611aba565b005b34801561082d57600080fd5b5061084860048036038101906108439190613827565b611d59565b005b34801561085657600080fd5b50610871600480360381019061086c9190613c41565b611ed0565b005b61088d60048036038101906108889190613827565b612051565b005b34801561089b57600080fd5b506108a46121d7565b6040516108b191906137e0565b60405180910390f35b3480156108c657600080fd5b506108e160048036038101906108dc9190613d22565b6121dd565b005b3480156108ef57600080fd5b5061090a60048036038101906109059190613827565b61223f565b60405161091791906138ed565b60405180910390f35b34801561092c57600080fd5b506109356122e6565b60405161094291906137e0565b60405180910390f35b34801561095757600080fd5b50610972600480360381019061096d9190613da5565b6122ec565b60405161097f91906137ac565b60405180910390f35b34801561099457600080fd5b5061099d612380565b6040516109aa91906137e0565b60405180910390f35b3480156109bf57600080fd5b506109da60048036038101906109d59190613be8565b612386565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4f5750610a4e82612532565b5b9050919050565b60165481565b610a64612614565b73ffffffffffffffffffffffffffffffffffffffff16610a826118f2565b73ffffffffffffffffffffffffffffffffffffffff1614610ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acf90613e31565b60405180910390fd5b80600f8190555050565b60105481565b606060008054610af790613e80565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2390613e80565b8015610b705780601f10610b4557610100808354040283529160200191610b70565b820191906000526020600020905b815481529060010190602001808311610b5357829003601f168201915b5050505050905090565b6000610b858261261c565b610bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbb90613f24565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c0a826115f3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7290613fb6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c9a612614565b73ffffffffffffffffffffffffffffffffffffffff161480610cc95750610cc881610cc3612614565b6122ec565b5b610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff90614048565b60405180910390fd5b610d128383612688565b505050565b6000600880549050905090565b600f5481565b601b54821115610d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d66906140da565b60405180910390fd5b6001600e5414610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab9061416c565b60405180910390fd5b60115482610dc0610d17565b610dca91906141bb565b1115610e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0290614283565b60405180910390fd5b3482601854610e1a91906142a3565b1115610e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5290614349565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401610ecd91906137e0565b60206040518083038186803b158015610ee557600080fd5b505afa158015610ef9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1d919061437e565b73ffffffffffffffffffffffffffffffffffffffff1614610f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6a9061441d565b60405180910390fd5b60005b82811015610fc45760006001601a54610f8f91906141bb565b9050610f9b3382612741565b6001601a54610faa91906141bb565b601a81905550508080610fbc9061443d565b915050610f76565b505050565b610fda610fd4612614565b8261275f565b611019576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611010906144f8565b60405180910390fd5b61102483838361283d565b505050565b6000611034836116ab565b8210611075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106c9061458a565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60006011548210611114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110b9061461c565b60405180910390fd5b61111d8261261c565b9050919050565b61112c612614565b73ffffffffffffffffffffffffffffffffffffffff1661114a6118f2565b73ffffffffffffffffffffffffffffffffffffffff16146111a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119790613e31565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156111eb573d6000803e3d6000fd5b5050565b60115481565b611210838383604051806020016040528060008152506121dd565b505050565b61121e81612a99565b50565b601b54821115611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d906140da565b60405180910390fd5b6001600e54146112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a29061416c565b60405180910390fd5b601154826112b7610d17565b6112c191906141bb565b1115611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f990614283565b60405180910390fd5b348260185461131191906142a3565b1115611352576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134990614349565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016113c491906137e0565b60206040518083038186803b1580156113dc57600080fd5b505afa1580156113f0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611414919061437e565b73ffffffffffffffffffffffffffffffffffffffff161461146a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611461906146ae565b60405180910390fd5b60005b828110156114bb5760006001601a5461148691906141bb565b90506114923382612741565b6001601a546114a191906141bb565b601a819055505080806114b39061443d565b91505061146d565b505050565b60006114ca610d17565b821061150b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150290614740565b60405180910390fd5b6008828154811061151f5761151e614760565b5b90600052602060002001549050919050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61155f612614565b73ffffffffffffffffffffffffffffffffffffffff1661157d6118f2565b73ffffffffffffffffffffffffffffffffffffffff16146115d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ca90613e31565b60405180910390fd5b80601290805190602001906115e9929190613655565b5050565b60185481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561169c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169390614801565b60405180910390fd5b80915050919050565b60195481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561171c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171390614893565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61176b612614565b73ffffffffffffffffffffffffffffffffffffffff166117896118f2565b73ffffffffffffffffffffffffffffffffffffffff16146117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d690613e31565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601b5481565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611924612614565b73ffffffffffffffffffffffffffffffffffffffff166119426118f2565b73ffffffffffffffffffffffffffffffffffffffff1614611998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198f90613e31565b60405180910390fd5b8060188190555050565b6060600180546119b190613e80565b80601f01602080910402602001604051908101604052809291908181526020018280546119dd90613e80565b8015611a2a5780601f106119ff57610100808354040283529160200191611a2a565b820191906000526020600020905b815481529060010190602001808311611a0d57829003601f168201915b5050505050905090565b611a3c612614565b73ffffffffffffffffffffffffffffffffffffffff16611a5a6118f2565b73ffffffffffffffffffffffffffffffffffffffff1614611ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa790613e31565b60405180910390fd5b80600e8190555050565b601b54821115611aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af6906140da565b60405180910390fd5b6001600e5414611b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3b9061416c565b60405180910390fd5b60115482611b50610d17565b611b5a91906141bb565b1115611b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9290614283565b60405180910390fd5b3482601854611baa91906142a3565b1115611beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be290614349565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401611c5d91906137e0565b60206040518083038186803b158015611c7557600080fd5b505afa158015611c89573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cad919061437e565b73ffffffffffffffffffffffffffffffffffffffff1614611d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfa906148ff565b60405180910390fd5b60005b82811015611d545760006001601a54611d1f91906141bb565b9050611d2b3382612741565b6001601a54611d3a91906141bb565b601a81905550508080611d4c9061443d565b915050611d06565b505050565b611d61612614565b73ffffffffffffffffffffffffffffffffffffffff16611d7f6118f2565b73ffffffffffffffffffffffffffffffffffffffff1614611dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcc90613e31565b60405180910390fd5b601754811115611e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1190614991565b60405180910390fd5b60175481601654611e2b91906141bb565b1115611e6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6390614283565b60405180910390fd5b60005b81811015611ecc57611e8f336001601a54611e8a91906141bb565b612741565b6001601654611e9e91906141bb565b6016819055506001601a54611eb391906141bb565b601a819055508080611ec49061443d565b915050611e6f565b5050565b611ed8612614565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3d906149fd565b60405180910390fd5b8060056000611f53612614565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612000612614565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161204591906137ac565b60405180910390a35050565b601b54811115612096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208d906140da565b60405180910390fd5b6001600e54146120db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d29061416c565b60405180910390fd5b601154816120e7610d17565b6120f191906141bb565b1115612132576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212990614283565b60405180910390fd5b348160185461214191906142a3565b1115612182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217990614349565b60405180910390fd5b60005b818110156121d35760006001601a5461219e91906141bb565b90506121aa3382612741565b6001601a546121b991906141bb565b601a819055505080806121cb9061443d565b915050612185565b5050565b60175481565b6121ee6121e8612614565b8361275f565b61222d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612224906144f8565b60405180910390fd5b61223984848484612baa565b50505050565b606061224a8261261c565b612289576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228090614a8f565b60405180910390fd5b6000612293612c06565b905060008151116122b357604051806020016040528060008152506122de565b806122bd84612c98565b6040516020016122ce929190614aeb565b6040516020818303038152906040525b915050919050565b601a5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e5481565b61238e612614565b73ffffffffffffffffffffffffffffffffffffffff166123ac6118f2565b73ffffffffffffffffffffffffffffffffffffffff1614612402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f990613e31565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612472576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246990614b81565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806125fd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061260d575061260c82612df9565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126fb836115f3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61275b828260405180602001604052806000815250612e63565b5050565b600061276a8261261c565b6127a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a090614c13565b60405180910390fd5b60006127b4836115f3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061282357508373ffffffffffffffffffffffffffffffffffffffff1661280b84610b7a565b73ffffffffffffffffffffffffffffffffffffffff16145b80612834575061283381856122ec565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661285d826115f3565b73ffffffffffffffffffffffffffffffffffffffff16146128b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128aa90614ca5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291a90614d37565b60405180910390fd5b61292e838383612ebe565b612939600082612688565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129899190614d57565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129e091906141bb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612aa4826115f3565b9050612ab281600084612ebe565b612abd600083612688565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b0d9190614d57565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b612bb584848461283d565b612bc184848484612fd2565b612c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf790614dfd565b60405180910390fd5b50505050565b606060128054612c1590613e80565b80601f0160208091040260200160405190810160405280929190818152602001828054612c4190613e80565b8015612c8e5780601f10612c6357610100808354040283529160200191612c8e565b820191906000526020600020905b815481529060010190602001808311612c7157829003601f168201915b5050505050905090565b60606000821415612ce0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612df4565b600082905060005b60008214612d12578080612cfb9061443d565b915050600a82612d0b9190614e4c565b9150612ce8565b60008167ffffffffffffffff811115612d2e57612d2d613a74565b5b6040519080825280601f01601f191660200182016040528015612d605781602001600182028036833780820191505090505b5090505b60008514612ded57600182612d799190614d57565b9150600a85612d889190614e7d565b6030612d9491906141bb565b60f81b818381518110612daa57612da9614760565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612de69190614e4c565b9450612d64565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612e6d8383613169565b612e7a6000848484612fd2565b612eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb090614dfd565b60405180910390fd5b505050565b612ec9838383613337565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f0c57612f078161333c565b612f4b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612f4a57612f498382613385565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f8e57612f89816134f2565b612fcd565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612fcc57612fcb82826135c3565b5b5b505050565b6000612ff38473ffffffffffffffffffffffffffffffffffffffff16613642565b1561315c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261301c612614565b8786866040518563ffffffff1660e01b815260040161303e9493929190614f03565b602060405180830381600087803b15801561305857600080fd5b505af192505050801561308957506040513d601f19601f820116820180604052508101906130869190614f64565b60015b61310c573d80600081146130b9576040519150601f19603f3d011682016040523d82523d6000602084013e6130be565b606091505b50600081511415613104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130fb90614dfd565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613161565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131d090614fdd565b60405180910390fd5b6131e28161261c565b15613222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321990615049565b60405180910390fd5b61322e60008383612ebe565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461327e91906141bb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613392846116ab565b61339c9190614d57565b9050600060076000848152602001908152602001600020549050818114613481576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506135069190614d57565b905060006009600084815260200190815260200160002054905060006008838154811061353657613535614760565b5b90600052602060002001549050806008838154811061355857613557614760565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806135a7576135a6615069565b5b6001900381819060005260206000200160009055905550505050565b60006135ce836116ab565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b82805461366190613e80565b90600052602060002090601f01602090048101928261368357600085556136ca565b82601f1061369c57805160ff19168380011785556136ca565b828001600101855582156136ca579182015b828111156136c95782518255916020019190600101906136ae565b5b5090506136d791906136db565b5090565b5b808211156136f45760008160009055506001016136dc565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137418161370c565b811461374c57600080fd5b50565b60008135905061375e81613738565b92915050565b60006020828403121561377a57613779613702565b5b60006137888482850161374f565b91505092915050565b60008115159050919050565b6137a681613791565b82525050565b60006020820190506137c1600083018461379d565b92915050565b6000819050919050565b6137da816137c7565b82525050565b60006020820190506137f560008301846137d1565b92915050565b613804816137c7565b811461380f57600080fd5b50565b600081359050613821816137fb565b92915050565b60006020828403121561383d5761383c613702565b5b600061384b84828501613812565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561388e578082015181840152602081019050613873565b8381111561389d576000848401525b50505050565b6000601f19601f8301169050919050565b60006138bf82613854565b6138c9818561385f565b93506138d9818560208601613870565b6138e2816138a3565b840191505092915050565b6000602082019050818103600083015261390781846138b4565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061393a8261390f565b9050919050565b61394a8161392f565b82525050565b60006020820190506139656000830184613941565b92915050565b6139748161392f565b811461397f57600080fd5b50565b6000813590506139918161396b565b92915050565b600080604083850312156139ae576139ad613702565b5b60006139bc85828601613982565b92505060206139cd85828601613812565b9150509250929050565b600080604083850312156139ee576139ed613702565b5b60006139fc85828601613812565b9250506020613a0d85828601613812565b9150509250929050565b600080600060608486031215613a3057613a2f613702565b5b6000613a3e86828701613982565b9350506020613a4f86828701613982565b9250506040613a6086828701613812565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613aac826138a3565b810181811067ffffffffffffffff82111715613acb57613aca613a74565b5b80604052505050565b6000613ade6136f8565b9050613aea8282613aa3565b919050565b600067ffffffffffffffff821115613b0a57613b09613a74565b5b613b13826138a3565b9050602081019050919050565b82818337600083830152505050565b6000613b42613b3d84613aef565b613ad4565b905082815260208101848484011115613b5e57613b5d613a6f565b5b613b69848285613b20565b509392505050565b600082601f830112613b8657613b85613a6a565b5b8135613b96848260208601613b2f565b91505092915050565b600060208284031215613bb557613bb4613702565b5b600082013567ffffffffffffffff811115613bd357613bd2613707565b5b613bdf84828501613b71565b91505092915050565b600060208284031215613bfe57613bfd613702565b5b6000613c0c84828501613982565b91505092915050565b613c1e81613791565b8114613c2957600080fd5b50565b600081359050613c3b81613c15565b92915050565b60008060408385031215613c5857613c57613702565b5b6000613c6685828601613982565b9250506020613c7785828601613c2c565b9150509250929050565b600067ffffffffffffffff821115613c9c57613c9b613a74565b5b613ca5826138a3565b9050602081019050919050565b6000613cc5613cc084613c81565b613ad4565b905082815260208101848484011115613ce157613ce0613a6f565b5b613cec848285613b20565b509392505050565b600082601f830112613d0957613d08613a6a565b5b8135613d19848260208601613cb2565b91505092915050565b60008060008060808587031215613d3c57613d3b613702565b5b6000613d4a87828801613982565b9450506020613d5b87828801613982565b9350506040613d6c87828801613812565b925050606085013567ffffffffffffffff811115613d8d57613d8c613707565b5b613d9987828801613cf4565b91505092959194509250565b60008060408385031215613dbc57613dbb613702565b5b6000613dca85828601613982565b9250506020613ddb85828601613982565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e1b60208361385f565b9150613e2682613de5565b602082019050919050565b60006020820190508181036000830152613e4a81613e0e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613e9857607f821691505b60208210811415613eac57613eab613e51565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613f0e602c8361385f565b9150613f1982613eb2565b604082019050919050565b60006020820190508181036000830152613f3d81613f01565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613fa060218361385f565b9150613fab82613f44565b604082019050919050565b60006020820190508181036000830152613fcf81613f93565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061403260388361385f565b915061403d82613fd6565b604082019050919050565b6000602082019050818103600083015261406181614025565b9050919050565b7f43616e206f6e6c79206d696e742031352049737375657320617420612074696d60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b60006140c460218361385f565b91506140cf82614068565b604082019050919050565b600060208201905081810360008301526140f3816140b7565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e7420616e204960008201527f7373756500000000000000000000000000000000000000000000000000000000602082015250565b600061415660248361385f565b9150614161826140fa565b604082019050919050565b6000602082019050818103600083015261418581614149565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006141c6826137c7565b91506141d1836137c7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142065761420561418c565b5b828201905092915050565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f662049737375657300000000000000000000000000000000000000000000602082015250565b600061426d602a8361385f565b915061427882614211565b604082019050919050565b6000602082019050818103600083015261429c81614260565b9050919050565b60006142ae826137c7565b91506142b9836137c7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142f2576142f161418c565b5b828202905092915050565b7f546f6f206c6974746c65204554482073656e6400000000000000000000000000600082015250565b600061433360138361385f565b915061433e826142fd565b602082019050919050565b6000602082019050818103600083015261436281614326565b9050919050565b6000815190506143788161396b565b92915050565b60006020828403121561439457614393613702565b5b60006143a284828501614369565b91505092915050565b7f4d757374206f776e20616e20626173796320697373756520746f206d696e742060008201527f6120697373756500000000000000000000000000000000000000000000000000602082015250565b600061440760278361385f565b9150614412826143ab565b604082019050919050565b60006020820190508181036000830152614436816143fa565b9050919050565b6000614448826137c7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561447b5761447a61418c565b5b600182019050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006144e260318361385f565b91506144ed82614486565b604082019050919050565b60006020820190508181036000830152614511816144d5565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614574602b8361385f565b915061457f82614518565b604082019050919050565b600060208201905081810360008301526145a381614567565b9050919050565b7f746f6b656e4964206f75747369646520636f6c6c656374696f6e20626f756e6460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061460660218361385f565b9150614611826145aa565b604082019050919050565b60006020820190508181036000830152614635816145f9565b9050919050565b7f4d757374206f776e20616e20617065206d616666696120746f206d696e74206160008201527f2069737375650000000000000000000000000000000000000000000000000000602082015250565b600061469860268361385f565b91506146a38261463c565b604082019050919050565b600060208201905081810360008301526146c78161468b565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b600061472a602c8361385f565b9150614735826146ce565b604082019050919050565b600060208201905081810360008301526147598161471d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006147eb60298361385f565b91506147f68261478f565b604082019050919050565b6000602082019050818103600083015261481a816147de565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061487d602a8361385f565b915061488882614821565b604082019050919050565b600060208201905081810360008301526148ac81614870565b9050919050565b7f4d757374206f776e20616e2061706520746f206d696e74206120697373756500600082015250565b60006148e9601f8361385f565b91506148f4826148b3565b602082019050919050565b60006020820190508181036000830152614918816148dc565b9050919050565b7f43616e206f6e6c79206d696e742033362049737375657320617420612074696d60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b600061497b60218361385f565b91506149868261491f565b604082019050919050565b600060208201905081810360008301526149aa8161496e565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006149e760198361385f565b91506149f2826149b1565b602082019050919050565b60006020820190508181036000830152614a16816149da565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614a79602f8361385f565b9150614a8482614a1d565b604082019050919050565b60006020820190508181036000830152614aa881614a6c565b9050919050565b600081905092915050565b6000614ac582613854565b614acf8185614aaf565b9350614adf818560208601613870565b80840191505092915050565b6000614af78285614aba565b9150614b038284614aba565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614b6b60268361385f565b9150614b7682614b0f565b604082019050919050565b60006020820190508181036000830152614b9a81614b5e565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614bfd602c8361385f565b9150614c0882614ba1565b604082019050919050565b60006020820190508181036000830152614c2c81614bf0565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614c8f60298361385f565b9150614c9a82614c33565b604082019050919050565b60006020820190508181036000830152614cbe81614c82565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614d2160248361385f565b9150614d2c82614cc5565b604082019050919050565b60006020820190508181036000830152614d5081614d14565b9050919050565b6000614d62826137c7565b9150614d6d836137c7565b925082821015614d8057614d7f61418c565b5b828203905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614de760328361385f565b9150614df282614d8b565b604082019050919050565b60006020820190508181036000830152614e1681614dda565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614e57826137c7565b9150614e62836137c7565b925082614e7257614e71614e1d565b5b828204905092915050565b6000614e88826137c7565b9150614e93836137c7565b925082614ea357614ea2614e1d565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614ed582614eae565b614edf8185614eb9565b9350614eef818560208601613870565b614ef8816138a3565b840191505092915050565b6000608082019050614f186000830187613941565b614f256020830186613941565b614f3260408301856137d1565b8181036060830152614f448184614eca565b905095945050505050565b600081519050614f5e81613738565b92915050565b600060208284031215614f7a57614f79613702565b5b6000614f8884828501614f4f565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614fc760208361385f565b9150614fd282614f91565b602082019050919050565b60006020820190508181036000830152614ff681614fba565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615033601c8361385f565b915061503e82614ffd565b602082019050919050565b6000602082019050818103600083015261506281615026565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220bd1836d481213c87e3c5d270bbdb2c6cc049159ef97f169fa1128a94fe3f9ee364736f6c63430008090033

Deployed Bytecode Sourcemap

38363:5307:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29028:237;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38751:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43246:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38564:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16233:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17693:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17230:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29681:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38529:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42420:715;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18583:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29349:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39546:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43353:143;;;:::i;:::-;;38602:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18959:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43600:67;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40995:710;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29871:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38719:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39826:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38817:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15927:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38847:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15657:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36900:148;;;;;;;;;;;;;:::i;:::-;;38688:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38913:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38658:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36249:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43502:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16402:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43145:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41709:705;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39914:464;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17986:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40384:605;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38786:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19181:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16577:360;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38881:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18352:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38497:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37203:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29028:237;29130:4;29169:35;29154:50;;;:11;:50;;;;:103;;;;29221:36;29245:11;29221:23;:36::i;:::-;29154:103;29147:110;;29028:237;;;:::o;38751:30::-;;;;:::o;43246:101::-;36480:12;:10;:12::i;:::-;36469:23;;:7;:5;:7::i;:::-;:23;;;36461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43331:10:::1;43313:15;:28;;;;43246:101:::0;:::o;38564:33::-;;;;:::o;16233:100::-;16287:13;16320:5;16313:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16233:100;:::o;17693:221::-;17769:7;17797:16;17805:7;17797;:16::i;:::-;17789:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;17882:15;:24;17898:7;17882:24;;;;;;;;;;;;;;;;;;;;;17875:31;;17693:221;;;:::o;17230:397::-;17311:13;17327:23;17342:7;17327:14;:23::i;:::-;17311:39;;17375:5;17369:11;;:2;:11;;;;17361:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;17455:5;17439:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;17464:37;17481:5;17488:12;:10;:12::i;:::-;17464:16;:37::i;:::-;17439:62;17431:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;17598:21;17607:2;17611:7;17598:8;:21::i;:::-;17300:327;17230:397;;:::o;29681:113::-;29742:7;29769:10;:17;;;;29762:24;;29681:113;:::o;38529:30::-;;;;:::o;42420:715::-;42531:7;;42513:14;:25;;42505:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;42607:1;42591:12;;:17;42583:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;42700:9;;42681:14;42665:13;:11;:13::i;:::-;:30;;;;:::i;:::-;42664:45;;42656:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;42804:9;42785:14;42772:10;;:27;;;;:::i;:::-;42771:42;;42763:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;42873:10;42852:31;;:5;;;;;;;;;;;:13;;;42866:2;42852:17;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:31;;;42844:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;42940:6;42936:194;42956:14;42952:1;:18;42936:194;;;42992:14;43024:1;43009:12;;:16;;;;:::i;:::-;42992:33;;43040:32;43050:10;43062:9;43040;:32::i;:::-;43117:1;43102:12;;:16;;;;:::i;:::-;43087:12;:31;;;;42977:153;42972:3;;;;;:::i;:::-;;;;42936:194;;;;42420:715;;:::o;18583:305::-;18744:41;18763:12;:10;:12::i;:::-;18777:7;18744:18;:41::i;:::-;18736:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;18852:28;18862:4;18868:2;18872:7;18852:9;:28::i;:::-;18583:305;;;:::o;29349:256::-;29446:7;29482:23;29499:5;29482:16;:23::i;:::-;29474:5;:31;29466:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;29571:12;:19;29584:5;29571:19;;;;;;;;;;;;;;;:26;29591:5;29571:26;;;;;;;;;;;;29564:33;;29349:256;;;;:::o;39546:174::-;39604:4;39635:9;;39625:7;:19;39617:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;39698:16;39706:7;39698;:16::i;:::-;39691:23;;39546:174;;;:::o;43353:143::-;36480:12;:10;:12::i;:::-;36469:23;;:7;:5;:7::i;:::-;:23;;;36461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43406:12:::1;43421:21;43406:36;;43459:10;43451:28;;:37;43480:7;43451:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;43397:99;43353:143::o:0;38602:24::-;;;;:::o;18959:151::-;19063:39;19080:4;19086:2;19090:7;19063:39;;;;;;;;;;;;:16;:39::i;:::-;18959:151;;;:::o;43600:67::-;43650:9;43656:2;43650:5;:9::i;:::-;43600:67;:::o;40995:710::-;41104:7;;41086:14;:25;;41078:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;41180:1;41164:12;;:17;41156:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;41273:9;;41254:14;41238:13;:11;:13::i;:::-;:30;;;;:::i;:::-;41237:45;;41229:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;41377:9;41358:14;41345:10;;:27;;;;:::i;:::-;41344:42;;41336:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;41444:10;41425:29;;:3;;;;;;;;;;;:11;;;41437:2;41425:15;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:29;;;41417:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;41510:6;41506:194;41526:14;41522:1;:18;41506:194;;;41562:14;41594:1;41579:12;;:16;;;;:::i;:::-;41562:33;;41610:32;41620:10;41632:9;41610;:32::i;:::-;41687:1;41672:12;;:16;;;;:::i;:::-;41657:12;:31;;;;41547:153;41542:3;;;;;:::i;:::-;;;;41506:194;;;;40995:710;;:::o;29871:233::-;29946:7;29982:30;:28;:30::i;:::-;29974:5;:38;29966:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;30079:10;30090:5;30079:17;;;;;;;;:::i;:::-;;;;;;;;;;30072:24;;29871:233;;;:::o;38719:27::-;;;;;;;;;;;;;:::o;39826:82::-;36480:12;:10;:12::i;:::-;36469:23;;:7;:5;:7::i;:::-;:23;;;36461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39899:3:::1;39889:7;:13;;;;;;;;;;;;:::i;:::-;;39826:82:::0;:::o;38817:25::-;;;;:::o;15927:239::-;15999:7;16019:13;16035:7;:16;16043:7;16035:16;;;;;;;;;;;;;;;;;;;;;16019:32;;16087:1;16070:19;;:5;:19;;;;16062:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;16153:5;16146:12;;;15927:239;;;:::o;38847:29::-;;;;:::o;15657:208::-;15729:7;15774:1;15757:19;;:5;:19;;;;15749:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15841:9;:16;15851:5;15841:16;;;;;;;;;;;;;;;;15834:23;;15657:208;;;:::o;36900:148::-;36480:12;:10;:12::i;:::-;36469:23;;:7;:5;:7::i;:::-;:23;;;36461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37007:1:::1;36970:40;;36991:6;;;;;;;;;;;36970:40;;;;;;;;;;;;37038:1;37021:6;;:19;;;;;;;;;;;;;;;;;;36900:148::o:0;38688:26::-;;;;;;;;;;;;;:::o;38913:22::-;;;;:::o;38658:25::-;;;;;;;;;;;;;:::o;36249:87::-;36295:7;36322:6;;;;;;;;;;;36315:13;;36249:87;:::o;43502:92::-;36480:12;:10;:12::i;:::-;36469:23;;:7;:5;:7::i;:::-;:23;;;36461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43577:9:::1;43564:10;:22;;;;43502:92:::0;:::o;16402:104::-;16458:13;16491:7;16484:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16402:104;:::o;43145:95::-;36480:12;:10;:12::i;:::-;36469:23;;:7;:5;:7::i;:::-;:23;;;36461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43224:10:::1;43209:12;:25;;;;43145:95:::0;:::o;41709:705::-;41819:7;;41801:14;:25;;41793:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;41895:1;41879:12;;:17;41871:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;41988:9;;41969:14;41953:13;:11;:13::i;:::-;:30;;;;:::i;:::-;41952:45;;41944:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;42092:9;42073:14;42060:10;;:27;;;;:::i;:::-;42059:42;;42051:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;42160:10;42140:30;;:4;;;;;;;;;;;:12;;;42153:2;42140:16;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:30;;;42132:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;42219:6;42215:194;42235:14;42231:1;:18;42215:194;;;42271:14;42303:1;42288:12;;:16;;;;:::i;:::-;42271:33;;42319:32;42329:10;42341:9;42319;:32::i;:::-;42396:1;42381:12;;:16;;;;:::i;:::-;42366:12;:31;;;;42256:153;42251:3;;;;;:::i;:::-;;;;42215:194;;;;41709:705;;:::o;39914:464::-;36480:12;:10;:12::i;:::-;36469:23;;:7;:5;:7::i;:::-;:23;;;36461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40015:11:::1;;39997:14;:29;;39989:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;40117:11;;40098:14;40080:15;;:32;;;;:::i;:::-;40079:49;;40071:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;40192:6;40188:185;40208:14;40204:1;:18;40188:185;;;40238:41;40248:10;40276:1;40261:12;;:16;;;;:::i;:::-;40238:9;:41::i;:::-;40324:1;40306:15;;:19;;;;:::i;:::-;40288:15;:37;;;;40364:1;40349:12;;:16;;;;:::i;:::-;40334:12;:31;;;;40224:3;;;;;:::i;:::-;;;;40188:185;;;;39914:464:::0;:::o;17986:295::-;18101:12;:10;:12::i;:::-;18089:24;;:8;:24;;;;18081:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;18201:8;18156:18;:32;18175:12;:10;:12::i;:::-;18156:32;;;;;;;;;;;;;;;:42;18189:8;18156:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;18254:8;18225:48;;18240:12;:10;:12::i;:::-;18225:48;;;18264:8;18225:48;;;;;;:::i;:::-;;;;;;;;17986:295;;:::o;40384:605::-;40475:7;;40457:14;:25;;40449:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;40551:1;40535:12;;:17;40527:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;40644:9;;40625:14;40609:13;:11;:13::i;:::-;:30;;;;:::i;:::-;40608:45;;40600:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;40748:9;40729:14;40716:10;;:27;;;;:::i;:::-;40715:42;;40707:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;40794:6;40790:194;40810:14;40806:1;:18;40790:194;;;40846:14;40878:1;40863:12;;:16;;;;:::i;:::-;40846:33;;40894:32;40904:10;40916:9;40894;:32::i;:::-;40971:1;40956:12;;:16;;;;:::i;:::-;40941:12;:31;;;;40831:153;40826:3;;;;;:::i;:::-;;;;40790:194;;;;40384:605;:::o;38786:26::-;;;;:::o;19181:285::-;19313:41;19332:12;:10;:12::i;:::-;19346:7;19313:18;:41::i;:::-;19305:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;19419:39;19433:4;19439:2;19443:7;19452:5;19419:13;:39::i;:::-;19181:285;;;;:::o;16577:360::-;16650:13;16684:16;16692:7;16684;:16::i;:::-;16676:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;16765:21;16789:10;:8;:10::i;:::-;16765:34;;16841:1;16823:7;16817:21;:25;:112;;;;;;;;;;;;;;;;;16882:7;16891:18;:7;:16;:18::i;:::-;16865:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;16817:112;16810:119;;;16577:360;;;:::o;38881:27::-;;;;:::o;18352:164::-;18449:4;18473:18;:25;18492:5;18473:25;;;;;;;;;;;;;;;:35;18499:8;18473:35;;;;;;;;;;;;;;;;;;;;;;;;;18466:42;;18352:164;;;;:::o;38497:27::-;;;;:::o;37203:244::-;36480:12;:10;:12::i;:::-;36469:23;;:7;:5;:7::i;:::-;:23;;;36461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37312:1:::1;37292:22;;:8;:22;;;;37284:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;37402:8;37373:38;;37394:6;;;;;;;;;;;37373:38;;;;;;;;;;;;37431:8;37422:6;;:17;;;;;;;;;;;;;;;;;;37203:244:::0;:::o;15301:292::-;15403:4;15442:25;15427:40;;;:11;:40;;;;:105;;;;15499:33;15484:48;;;:11;:48;;;;15427:105;:158;;;;15549:36;15573:11;15549:23;:36::i;:::-;15427:158;15420:165;;15301:292;;;:::o;10589:98::-;10642:7;10669:10;10662:17;;10589:98;:::o;20933:127::-;20998:4;21050:1;21022:30;;:7;:16;21030:7;21022:16;;;;;;;;;;;;;;;;;;;;;:30;;;;21015:37;;20933:127;;;:::o;24810:174::-;24912:2;24885:15;:24;24901:7;24885:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;24968:7;24964:2;24930:46;;24939:23;24954:7;24939:14;:23::i;:::-;24930:46;;;;;;;;;;;;24810:174;;:::o;21917:110::-;21993:26;22003:2;22007:7;21993:26;;;;;;;;;;;;:9;:26::i;:::-;21917:110;;:::o;21227:348::-;21320:4;21345:16;21353:7;21345;:16::i;:::-;21337:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21421:13;21437:23;21452:7;21437:14;:23::i;:::-;21421:39;;21490:5;21479:16;;:7;:16;;;:51;;;;21523:7;21499:31;;:20;21511:7;21499:11;:20::i;:::-;:31;;;21479:51;:87;;;;21534:32;21551:5;21558:7;21534:16;:32::i;:::-;21479:87;21471:96;;;21227:348;;;;:::o;24148:544::-;24273:4;24246:31;;:23;24261:7;24246:14;:23::i;:::-;:31;;;24238:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;24356:1;24342:16;;:2;:16;;;;24334:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;24412:39;24433:4;24439:2;24443:7;24412:20;:39::i;:::-;24516:29;24533:1;24537:7;24516:8;:29::i;:::-;24577:1;24558:9;:15;24568:4;24558:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;24606:1;24589:9;:13;24599:2;24589:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;24637:2;24618:7;:16;24626:7;24618:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;24676:7;24672:2;24657:27;;24666:4;24657:27;;;;;;;;;;;;24148:544;;;:::o;23451:360::-;23511:13;23527:23;23542:7;23527:14;:23::i;:::-;23511:39;;23563:48;23584:5;23599:1;23603:7;23563:20;:48::i;:::-;23652:29;23669:1;23673:7;23652:8;:29::i;:::-;23714:1;23694:9;:16;23704:5;23694:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;23733:7;:16;23741:7;23733:16;;;;;;;;;;;;23726:23;;;;;;;;;;;23795:7;23791:1;23767:36;;23776:5;23767:36;;;;;;;;;;;;23500:311;23451:360;:::o;20348:272::-;20462:28;20472:4;20478:2;20482:7;20462:9;:28::i;:::-;20509:48;20532:4;20538:2;20542:7;20551:5;20509:22;:48::i;:::-;20501:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;20348:272;;;;:::o;39726:94::-;39778:13;39807:7;39800:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39726:94;:::o;11244:723::-;11300:13;11530:1;11521:5;:10;11517:53;;;11548:10;;;;;;;;;;;;;;;;;;;;;11517:53;11580:12;11595:5;11580:20;;11611:14;11636:78;11651:1;11643:4;:9;11636:78;;11669:8;;;;;:::i;:::-;;;;11700:2;11692:10;;;;;:::i;:::-;;;11636:78;;;11724:19;11756:6;11746:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11724:39;;11774:154;11790:1;11781:5;:10;11774:154;;11818:1;11808:11;;;;;:::i;:::-;;;11885:2;11877:5;:10;;;;:::i;:::-;11864:2;:24;;;;:::i;:::-;11851:39;;11834:6;11841;11834:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;11914:2;11905:11;;;;;:::i;:::-;;;11774:154;;;11952:6;11938:21;;;;;11244:723;;;;:::o;13799:157::-;13884:4;13923:25;13908:40;;;:11;:40;;;;13901:47;;13799:157;;;:::o;22254:250::-;22350:18;22356:2;22360:7;22350:5;:18::i;:::-;22387:54;22418:1;22422:2;22426:7;22435:5;22387:22;:54::i;:::-;22379:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;22254:250;;;:::o;30717:555::-;30827:45;30854:4;30860:2;30864:7;30827:26;:45::i;:::-;30905:1;30889:18;;:4;:18;;;30885:187;;;30924:40;30956:7;30924:31;:40::i;:::-;30885:187;;;30994:2;30986:10;;:4;:10;;;30982:90;;31013:47;31046:4;31052:7;31013:32;:47::i;:::-;30982:90;30885:187;31100:1;31086:16;;:2;:16;;;31082:183;;;31119:45;31156:7;31119:36;:45::i;:::-;31082:183;;;31192:4;31186:10;;:2;:10;;;31182:83;;31213:40;31241:2;31245:7;31213:27;:40::i;:::-;31182:83;31082:183;30717:555;;;:::o;25549:843::-;25670:4;25696:15;:2;:13;;;:15::i;:::-;25692:693;;;25748:2;25732:36;;;25769:12;:10;:12::i;:::-;25783:4;25789:7;25798:5;25732:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;25728:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25995:1;25978:6;:13;:18;25974:341;;;26021:60;;;;;;;;;;:::i;:::-;;;;;;;;25974:341;26265:6;26259:13;26250:6;26246:2;26242:15;26235:38;25728:602;25865:45;;;25855:55;;;:6;:55;;;;25848:62;;;;;25692:693;26369:4;26362:11;;25549:843;;;;;;;:::o;22840:382::-;22934:1;22920:16;;:2;:16;;;;22912:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;22993:16;23001:7;22993;:16::i;:::-;22992:17;22984:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;23055:45;23084:1;23088:2;23092:7;23055:20;:45::i;:::-;23130:1;23113:9;:13;23123:2;23113:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;23161:2;23142:7;:16;23150:7;23142:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;23206:7;23202:2;23181:33;;23198:1;23181:33;;;;;;;;;;;;22840:382;;:::o;27005:93::-;;;;:::o;31995:164::-;32099:10;:17;;;;32072:15;:24;32088:7;32072:24;;;;;;;;;;;:44;;;;32127:10;32143:7;32127:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31995:164;:::o;32786:988::-;33052:22;33102:1;33077:22;33094:4;33077:16;:22::i;:::-;:26;;;;:::i;:::-;33052:51;;33114:18;33135:17;:26;33153:7;33135:26;;;;;;;;;;;;33114:47;;33282:14;33268:10;:28;33264:328;;33313:19;33335:12;:18;33348:4;33335:18;;;;;;;;;;;;;;;:34;33354:14;33335:34;;;;;;;;;;;;33313:56;;33419:11;33386:12;:18;33399:4;33386:18;;;;;;;;;;;;;;;:30;33405:10;33386:30;;;;;;;;;;;:44;;;;33536:10;33503:17;:30;33521:11;33503:30;;;;;;;;;;;:43;;;;33298:294;33264:328;33688:17;:26;33706:7;33688:26;;;;;;;;;;;33681:33;;;33732:12;:18;33745:4;33732:18;;;;;;;;;;;;;;;:34;33751:14;33732:34;;;;;;;;;;;33725:41;;;32867:907;;32786:988;;:::o;34069:1079::-;34322:22;34367:1;34347:10;:17;;;;:21;;;;:::i;:::-;34322:46;;34379:18;34400:15;:24;34416:7;34400:24;;;;;;;;;;;;34379:45;;34751:19;34773:10;34784:14;34773:26;;;;;;;;:::i;:::-;;;;;;;;;;34751:48;;34837:11;34812:10;34823;34812:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;34948:10;34917:15;:28;34933:11;34917:28;;;;;;;;;;;:41;;;;35089:15;:24;35105:7;35089:24;;;;;;;;;;;35082:31;;;35124:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34140:1008;;;34069:1079;:::o;31573:221::-;31658:14;31675:20;31692:2;31675:16;:20::i;:::-;31658:37;;31733:7;31706:12;:16;31719:2;31706:16;;;;;;;;;;;;;;;:24;31723:6;31706:24;;;;;;;;;;;:34;;;;31780:6;31751:17;:26;31769:7;31751:26;;;;;;;;;;;:35;;;;31647:147;31573:221;;:::o;2706:422::-;2766:4;2974:12;3085:7;3073:20;3065:28;;3119:1;3112:4;:8;3105:15;;;2706:422;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:118::-;1688:24;1706:5;1688:24;:::i;:::-;1683:3;1676:37;1601:118;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1725:222;;;;:::o;1953:122::-;2026:24;2044:5;2026:24;:::i;:::-;2019:5;2016:35;2006:63;;2065:1;2062;2055:12;2006:63;1953:122;:::o;2081:139::-;2127:5;2165:6;2152:20;2143:29;;2181:33;2208:5;2181:33;:::i;:::-;2081:139;;;;:::o;2226:329::-;2285:6;2334:2;2322:9;2313:7;2309:23;2305:32;2302:119;;;2340:79;;:::i;:::-;2302:119;2460:1;2485:53;2530:7;2521:6;2510:9;2506:22;2485:53;:::i;:::-;2475:63;;2431:117;2226:329;;;;:::o;2561:99::-;2613:6;2647:5;2641:12;2631:22;;2561:99;;;:::o;2666:169::-;2750:11;2784:6;2779:3;2772:19;2824:4;2819:3;2815:14;2800:29;;2666:169;;;;:::o;2841:307::-;2909:1;2919:113;2933:6;2930:1;2927:13;2919:113;;;3018:1;3013:3;3009:11;3003:18;2999:1;2994:3;2990:11;2983:39;2955:2;2952:1;2948:10;2943:15;;2919:113;;;3050:6;3047:1;3044:13;3041:101;;;3130:1;3121:6;3116:3;3112:16;3105:27;3041:101;2890:258;2841:307;;;:::o;3154:102::-;3195:6;3246:2;3242:7;3237:2;3230:5;3226:14;3222:28;3212:38;;3154:102;;;:::o;3262:364::-;3350:3;3378:39;3411:5;3378:39;:::i;:::-;3433:71;3497:6;3492:3;3433:71;:::i;:::-;3426:78;;3513:52;3558:6;3553:3;3546:4;3539:5;3535:16;3513:52;:::i;:::-;3590:29;3612:6;3590:29;:::i;:::-;3585:3;3581:39;3574:46;;3354:272;3262:364;;;;:::o;3632:313::-;3745:4;3783:2;3772:9;3768:18;3760:26;;3832:9;3826:4;3822:20;3818:1;3807:9;3803:17;3796:47;3860:78;3933:4;3924:6;3860:78;:::i;:::-;3852:86;;3632:313;;;;:::o;3951:126::-;3988:7;4028:42;4021:5;4017:54;4006:65;;3951:126;;;:::o;4083:96::-;4120:7;4149:24;4167:5;4149:24;:::i;:::-;4138:35;;4083:96;;;:::o;4185:118::-;4272:24;4290:5;4272:24;:::i;:::-;4267:3;4260:37;4185:118;;:::o;4309:222::-;4402:4;4440:2;4429:9;4425:18;4417:26;;4453:71;4521:1;4510:9;4506:17;4497:6;4453:71;:::i;:::-;4309:222;;;;:::o;4537:122::-;4610:24;4628:5;4610:24;:::i;:::-;4603:5;4600:35;4590:63;;4649:1;4646;4639:12;4590:63;4537:122;:::o;4665:139::-;4711:5;4749:6;4736:20;4727:29;;4765:33;4792:5;4765:33;:::i;:::-;4665:139;;;;:::o;4810:474::-;4878:6;4886;4935:2;4923:9;4914:7;4910:23;4906:32;4903:119;;;4941:79;;:::i;:::-;4903:119;5061:1;5086:53;5131:7;5122:6;5111:9;5107:22;5086:53;:::i;:::-;5076:63;;5032:117;5188:2;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5159:118;4810:474;;;;;:::o;5290:::-;5358:6;5366;5415:2;5403:9;5394:7;5390:23;5386:32;5383:119;;;5421:79;;:::i;:::-;5383:119;5541:1;5566:53;5611:7;5602:6;5591:9;5587:22;5566:53;:::i;:::-;5556:63;;5512:117;5668:2;5694:53;5739:7;5730:6;5719:9;5715:22;5694:53;:::i;:::-;5684:63;;5639:118;5290:474;;;;;:::o;5770:619::-;5847:6;5855;5863;5912:2;5900:9;5891:7;5887:23;5883:32;5880:119;;;5918:79;;:::i;:::-;5880:119;6038:1;6063:53;6108:7;6099:6;6088:9;6084:22;6063:53;:::i;:::-;6053:63;;6009:117;6165:2;6191:53;6236:7;6227:6;6216:9;6212:22;6191:53;:::i;:::-;6181:63;;6136:118;6293:2;6319:53;6364:7;6355:6;6344:9;6340:22;6319:53;:::i;:::-;6309:63;;6264:118;5770:619;;;;;:::o;6395:117::-;6504:1;6501;6494:12;6518:117;6627:1;6624;6617:12;6641:180;6689:77;6686:1;6679:88;6786:4;6783:1;6776:15;6810:4;6807:1;6800:15;6827:281;6910:27;6932:4;6910:27;:::i;:::-;6902:6;6898:40;7040:6;7028:10;7025:22;7004:18;6992:10;6989:34;6986:62;6983:88;;;7051:18;;:::i;:::-;6983:88;7091:10;7087:2;7080:22;6870:238;6827:281;;:::o;7114:129::-;7148:6;7175:20;;:::i;:::-;7165:30;;7204:33;7232:4;7224:6;7204:33;:::i;:::-;7114:129;;;:::o;7249:308::-;7311:4;7401:18;7393:6;7390:30;7387:56;;;7423:18;;:::i;:::-;7387:56;7461:29;7483:6;7461:29;:::i;:::-;7453:37;;7545:4;7539;7535:15;7527:23;;7249:308;;;:::o;7563:154::-;7647:6;7642:3;7637;7624:30;7709:1;7700:6;7695:3;7691:16;7684:27;7563:154;;;:::o;7723:412::-;7801:5;7826:66;7842:49;7884:6;7842:49;:::i;:::-;7826:66;:::i;:::-;7817:75;;7915:6;7908:5;7901:21;7953:4;7946:5;7942:16;7991:3;7982:6;7977:3;7973:16;7970:25;7967:112;;;7998:79;;:::i;:::-;7967:112;8088:41;8122:6;8117:3;8112;8088:41;:::i;:::-;7807:328;7723:412;;;;;:::o;8155:340::-;8211:5;8260:3;8253:4;8245:6;8241:17;8237:27;8227:122;;8268:79;;:::i;:::-;8227:122;8385:6;8372:20;8410:79;8485:3;8477:6;8470:4;8462:6;8458:17;8410:79;:::i;:::-;8401:88;;8217:278;8155:340;;;;:::o;8501:509::-;8570:6;8619:2;8607:9;8598:7;8594:23;8590:32;8587:119;;;8625:79;;:::i;:::-;8587:119;8773:1;8762:9;8758:17;8745:31;8803:18;8795:6;8792:30;8789:117;;;8825:79;;:::i;:::-;8789:117;8930:63;8985:7;8976:6;8965:9;8961:22;8930:63;:::i;:::-;8920:73;;8716:287;8501:509;;;;:::o;9016:329::-;9075:6;9124:2;9112:9;9103:7;9099:23;9095:32;9092:119;;;9130:79;;:::i;:::-;9092:119;9250:1;9275:53;9320:7;9311:6;9300:9;9296:22;9275:53;:::i;:::-;9265:63;;9221:117;9016:329;;;;:::o;9351:116::-;9421:21;9436:5;9421:21;:::i;:::-;9414:5;9411:32;9401:60;;9457:1;9454;9447:12;9401:60;9351:116;:::o;9473:133::-;9516:5;9554:6;9541:20;9532:29;;9570:30;9594:5;9570:30;:::i;:::-;9473:133;;;;:::o;9612:468::-;9677:6;9685;9734:2;9722:9;9713:7;9709:23;9705:32;9702:119;;;9740:79;;:::i;:::-;9702:119;9860:1;9885:53;9930:7;9921:6;9910:9;9906:22;9885:53;:::i;:::-;9875:63;;9831:117;9987:2;10013:50;10055:7;10046:6;10035:9;10031:22;10013:50;:::i;:::-;10003:60;;9958:115;9612:468;;;;;:::o;10086:307::-;10147:4;10237:18;10229:6;10226:30;10223:56;;;10259:18;;:::i;:::-;10223:56;10297:29;10319:6;10297:29;:::i;:::-;10289:37;;10381:4;10375;10371:15;10363:23;;10086:307;;;:::o;10399:410::-;10476:5;10501:65;10517:48;10558:6;10517:48;:::i;:::-;10501:65;:::i;:::-;10492:74;;10589:6;10582:5;10575:21;10627:4;10620:5;10616:16;10665:3;10656:6;10651:3;10647:16;10644:25;10641:112;;;10672:79;;:::i;:::-;10641:112;10762:41;10796:6;10791:3;10786;10762:41;:::i;:::-;10482:327;10399:410;;;;;:::o;10828:338::-;10883:5;10932:3;10925:4;10917:6;10913:17;10909:27;10899:122;;10940:79;;:::i;:::-;10899:122;11057:6;11044:20;11082:78;11156:3;11148:6;11141:4;11133:6;11129:17;11082:78;:::i;:::-;11073:87;;10889:277;10828:338;;;;:::o;11172:943::-;11267:6;11275;11283;11291;11340:3;11328:9;11319:7;11315:23;11311:33;11308:120;;;11347:79;;:::i;:::-;11308:120;11467:1;11492:53;11537:7;11528:6;11517:9;11513:22;11492:53;:::i;:::-;11482:63;;11438:117;11594:2;11620:53;11665:7;11656:6;11645:9;11641:22;11620:53;:::i;:::-;11610:63;;11565:118;11722:2;11748:53;11793:7;11784:6;11773:9;11769:22;11748:53;:::i;:::-;11738:63;;11693:118;11878:2;11867:9;11863:18;11850:32;11909:18;11901:6;11898:30;11895:117;;;11931:79;;:::i;:::-;11895:117;12036:62;12090:7;12081:6;12070:9;12066:22;12036:62;:::i;:::-;12026:72;;11821:287;11172:943;;;;;;;:::o;12121:474::-;12189:6;12197;12246:2;12234:9;12225:7;12221:23;12217:32;12214:119;;;12252:79;;:::i;:::-;12214:119;12372:1;12397:53;12442:7;12433:6;12422:9;12418:22;12397:53;:::i;:::-;12387:63;;12343:117;12499:2;12525:53;12570:7;12561:6;12550:9;12546:22;12525:53;:::i;:::-;12515:63;;12470:118;12121:474;;;;;:::o;12601:182::-;12741:34;12737:1;12729:6;12725:14;12718:58;12601:182;:::o;12789:366::-;12931:3;12952:67;13016:2;13011:3;12952:67;:::i;:::-;12945:74;;13028:93;13117:3;13028:93;:::i;:::-;13146:2;13141:3;13137:12;13130:19;;12789:366;;;:::o;13161:419::-;13327:4;13365:2;13354:9;13350:18;13342:26;;13414:9;13408:4;13404:20;13400:1;13389:9;13385:17;13378:47;13442:131;13568:4;13442:131;:::i;:::-;13434:139;;13161:419;;;:::o;13586:180::-;13634:77;13631:1;13624:88;13731:4;13728:1;13721:15;13755:4;13752:1;13745:15;13772:320;13816:6;13853:1;13847:4;13843:12;13833:22;;13900:1;13894:4;13890:12;13921:18;13911:81;;13977:4;13969:6;13965:17;13955:27;;13911:81;14039:2;14031:6;14028:14;14008:18;14005:38;14002:84;;;14058:18;;:::i;:::-;14002:84;13823:269;13772:320;;;:::o;14098:231::-;14238:34;14234:1;14226:6;14222:14;14215:58;14307:14;14302:2;14294:6;14290:15;14283:39;14098:231;:::o;14335:366::-;14477:3;14498:67;14562:2;14557:3;14498:67;:::i;:::-;14491:74;;14574:93;14663:3;14574:93;:::i;:::-;14692:2;14687:3;14683:12;14676:19;;14335:366;;;:::o;14707:419::-;14873:4;14911:2;14900:9;14896:18;14888:26;;14960:9;14954:4;14950:20;14946:1;14935:9;14931:17;14924:47;14988:131;15114:4;14988:131;:::i;:::-;14980:139;;14707:419;;;:::o;15132:220::-;15272:34;15268:1;15260:6;15256:14;15249:58;15341:3;15336:2;15328:6;15324:15;15317:28;15132:220;:::o;15358:366::-;15500:3;15521:67;15585:2;15580:3;15521:67;:::i;:::-;15514:74;;15597:93;15686:3;15597:93;:::i;:::-;15715:2;15710:3;15706:12;15699:19;;15358:366;;;:::o;15730:419::-;15896:4;15934:2;15923:9;15919:18;15911:26;;15983:9;15977:4;15973:20;15969:1;15958:9;15954:17;15947:47;16011:131;16137:4;16011:131;:::i;:::-;16003:139;;15730:419;;;:::o;16155:243::-;16295:34;16291:1;16283:6;16279:14;16272:58;16364:26;16359:2;16351:6;16347:15;16340:51;16155:243;:::o;16404:366::-;16546:3;16567:67;16631:2;16626:3;16567:67;:::i;:::-;16560:74;;16643:93;16732:3;16643:93;:::i;:::-;16761:2;16756:3;16752:12;16745:19;;16404:366;;;:::o;16776:419::-;16942:4;16980:2;16969:9;16965:18;16957:26;;17029:9;17023:4;17019:20;17015:1;17004:9;17000:17;16993:47;17057:131;17183:4;17057:131;:::i;:::-;17049:139;;16776:419;;;:::o;17201:220::-;17341:34;17337:1;17329:6;17325:14;17318:58;17410:3;17405:2;17397:6;17393:15;17386:28;17201:220;:::o;17427:366::-;17569:3;17590:67;17654:2;17649:3;17590:67;:::i;:::-;17583:74;;17666:93;17755:3;17666:93;:::i;:::-;17784:2;17779:3;17775:12;17768:19;;17427:366;;;:::o;17799:419::-;17965:4;18003:2;17992:9;17988:18;17980:26;;18052:9;18046:4;18042:20;18038:1;18027:9;18023:17;18016:47;18080:131;18206:4;18080:131;:::i;:::-;18072:139;;17799:419;;;:::o;18224:223::-;18364:34;18360:1;18352:6;18348:14;18341:58;18433:6;18428:2;18420:6;18416:15;18409:31;18224:223;:::o;18453:366::-;18595:3;18616:67;18680:2;18675:3;18616:67;:::i;:::-;18609:74;;18692:93;18781:3;18692:93;:::i;:::-;18810:2;18805:3;18801:12;18794:19;;18453:366;;;:::o;18825:419::-;18991:4;19029:2;19018:9;19014:18;19006:26;;19078:9;19072:4;19068:20;19064:1;19053:9;19049:17;19042:47;19106:131;19232:4;19106:131;:::i;:::-;19098:139;;18825:419;;;:::o;19250:180::-;19298:77;19295:1;19288:88;19395:4;19392:1;19385:15;19419:4;19416:1;19409:15;19436:305;19476:3;19495:20;19513:1;19495:20;:::i;:::-;19490:25;;19529:20;19547:1;19529:20;:::i;:::-;19524:25;;19683:1;19615:66;19611:74;19608:1;19605:81;19602:107;;;19689:18;;:::i;:::-;19602:107;19733:1;19730;19726:9;19719:16;;19436:305;;;;:::o;19747:229::-;19887:34;19883:1;19875:6;19871:14;19864:58;19956:12;19951:2;19943:6;19939:15;19932:37;19747:229;:::o;19982:366::-;20124:3;20145:67;20209:2;20204:3;20145:67;:::i;:::-;20138:74;;20221:93;20310:3;20221:93;:::i;:::-;20339:2;20334:3;20330:12;20323:19;;19982:366;;;:::o;20354:419::-;20520:4;20558:2;20547:9;20543:18;20535:26;;20607:9;20601:4;20597:20;20593:1;20582:9;20578:17;20571:47;20635:131;20761:4;20635:131;:::i;:::-;20627:139;;20354:419;;;:::o;20779:348::-;20819:7;20842:20;20860:1;20842:20;:::i;:::-;20837:25;;20876:20;20894:1;20876:20;:::i;:::-;20871:25;;21064:1;20996:66;20992:74;20989:1;20986:81;20981:1;20974:9;20967:17;20963:105;20960:131;;;21071:18;;:::i;:::-;20960:131;21119:1;21116;21112:9;21101:20;;20779:348;;;;:::o;21133:169::-;21273:21;21269:1;21261:6;21257:14;21250:45;21133:169;:::o;21308:366::-;21450:3;21471:67;21535:2;21530:3;21471:67;:::i;:::-;21464:74;;21547:93;21636:3;21547:93;:::i;:::-;21665:2;21660:3;21656:12;21649:19;;21308:366;;;:::o;21680:419::-;21846:4;21884:2;21873:9;21869:18;21861:26;;21933:9;21927:4;21923:20;21919:1;21908:9;21904:17;21897:47;21961:131;22087:4;21961:131;:::i;:::-;21953:139;;21680:419;;;:::o;22105:143::-;22162:5;22193:6;22187:13;22178:22;;22209:33;22236:5;22209:33;:::i;:::-;22105:143;;;;:::o;22254:351::-;22324:6;22373:2;22361:9;22352:7;22348:23;22344:32;22341:119;;;22379:79;;:::i;:::-;22341:119;22499:1;22524:64;22580:7;22571:6;22560:9;22556:22;22524:64;:::i;:::-;22514:74;;22470:128;22254:351;;;;:::o;22611:226::-;22751:34;22747:1;22739:6;22735:14;22728:58;22820:9;22815:2;22807:6;22803:15;22796:34;22611:226;:::o;22843:366::-;22985:3;23006:67;23070:2;23065:3;23006:67;:::i;:::-;22999:74;;23082:93;23171:3;23082:93;:::i;:::-;23200:2;23195:3;23191:12;23184:19;;22843:366;;;:::o;23215:419::-;23381:4;23419:2;23408:9;23404:18;23396:26;;23468:9;23462:4;23458:20;23454:1;23443:9;23439:17;23432:47;23496:131;23622:4;23496:131;:::i;:::-;23488:139;;23215:419;;;:::o;23640:233::-;23679:3;23702:24;23720:5;23702:24;:::i;:::-;23693:33;;23748:66;23741:5;23738:77;23735:103;;;23818:18;;:::i;:::-;23735:103;23865:1;23858:5;23854:13;23847:20;;23640:233;;;:::o;23879:236::-;24019:34;24015:1;24007:6;24003:14;23996:58;24088:19;24083:2;24075:6;24071:15;24064:44;23879:236;:::o;24121:366::-;24263:3;24284:67;24348:2;24343:3;24284:67;:::i;:::-;24277:74;;24360:93;24449:3;24360:93;:::i;:::-;24478:2;24473:3;24469:12;24462:19;;24121:366;;;:::o;24493:419::-;24659:4;24697:2;24686:9;24682:18;24674:26;;24746:9;24740:4;24736:20;24732:1;24721:9;24717:17;24710:47;24774:131;24900:4;24774:131;:::i;:::-;24766:139;;24493:419;;;:::o;24918:230::-;25058:34;25054:1;25046:6;25042:14;25035:58;25127:13;25122:2;25114:6;25110:15;25103:38;24918:230;:::o;25154:366::-;25296:3;25317:67;25381:2;25376:3;25317:67;:::i;:::-;25310:74;;25393:93;25482:3;25393:93;:::i;:::-;25511:2;25506:3;25502:12;25495:19;;25154:366;;;:::o;25526:419::-;25692:4;25730:2;25719:9;25715:18;25707:26;;25779:9;25773:4;25769:20;25765:1;25754:9;25750:17;25743:47;25807:131;25933:4;25807:131;:::i;:::-;25799:139;;25526:419;;;:::o;25951:220::-;26091:34;26087:1;26079:6;26075:14;26068:58;26160:3;26155:2;26147:6;26143:15;26136:28;25951:220;:::o;26177:366::-;26319:3;26340:67;26404:2;26399:3;26340:67;:::i;:::-;26333:74;;26416:93;26505:3;26416:93;:::i;:::-;26534:2;26529:3;26525:12;26518:19;;26177:366;;;:::o;26549:419::-;26715:4;26753:2;26742:9;26738:18;26730:26;;26802:9;26796:4;26792:20;26788:1;26777:9;26773:17;26766:47;26830:131;26956:4;26830:131;:::i;:::-;26822:139;;26549:419;;;:::o;26974:225::-;27114:34;27110:1;27102:6;27098:14;27091:58;27183:8;27178:2;27170:6;27166:15;27159:33;26974:225;:::o;27205:366::-;27347:3;27368:67;27432:2;27427:3;27368:67;:::i;:::-;27361:74;;27444:93;27533:3;27444:93;:::i;:::-;27562:2;27557:3;27553:12;27546:19;;27205:366;;;:::o;27577:419::-;27743:4;27781:2;27770:9;27766:18;27758:26;;27830:9;27824:4;27820:20;27816:1;27805:9;27801:17;27794:47;27858:131;27984:4;27858:131;:::i;:::-;27850:139;;27577:419;;;:::o;28002:231::-;28142:34;28138:1;28130:6;28126:14;28119:58;28211:14;28206:2;28198:6;28194:15;28187:39;28002:231;:::o;28239:366::-;28381:3;28402:67;28466:2;28461:3;28402:67;:::i;:::-;28395:74;;28478:93;28567:3;28478:93;:::i;:::-;28596:2;28591:3;28587:12;28580:19;;28239:366;;;:::o;28611:419::-;28777:4;28815:2;28804:9;28800:18;28792:26;;28864:9;28858:4;28854:20;28850:1;28839:9;28835:17;28828:47;28892:131;29018:4;28892:131;:::i;:::-;28884:139;;28611:419;;;:::o;29036:180::-;29084:77;29081:1;29074:88;29181:4;29178:1;29171:15;29205:4;29202:1;29195:15;29222:228;29362:34;29358:1;29350:6;29346:14;29339:58;29431:11;29426:2;29418:6;29414:15;29407:36;29222:228;:::o;29456:366::-;29598:3;29619:67;29683:2;29678:3;29619:67;:::i;:::-;29612:74;;29695:93;29784:3;29695:93;:::i;:::-;29813:2;29808:3;29804:12;29797:19;;29456:366;;;:::o;29828:419::-;29994:4;30032:2;30021:9;30017:18;30009:26;;30081:9;30075:4;30071:20;30067:1;30056:9;30052:17;30045:47;30109:131;30235:4;30109:131;:::i;:::-;30101:139;;29828:419;;;:::o;30253:229::-;30393:34;30389:1;30381:6;30377:14;30370:58;30462:12;30457:2;30449:6;30445:15;30438:37;30253:229;:::o;30488:366::-;30630:3;30651:67;30715:2;30710:3;30651:67;:::i;:::-;30644:74;;30727:93;30816:3;30727:93;:::i;:::-;30845:2;30840:3;30836:12;30829:19;;30488:366;;;:::o;30860:419::-;31026:4;31064:2;31053:9;31049:18;31041:26;;31113:9;31107:4;31103:20;31099:1;31088:9;31084:17;31077:47;31141:131;31267:4;31141:131;:::i;:::-;31133:139;;30860:419;;;:::o;31285:181::-;31425:33;31421:1;31413:6;31409:14;31402:57;31285:181;:::o;31472:366::-;31614:3;31635:67;31699:2;31694:3;31635:67;:::i;:::-;31628:74;;31711:93;31800:3;31711:93;:::i;:::-;31829:2;31824:3;31820:12;31813:19;;31472:366;;;:::o;31844:419::-;32010:4;32048:2;32037:9;32033:18;32025:26;;32097:9;32091:4;32087:20;32083:1;32072:9;32068:17;32061:47;32125:131;32251:4;32125:131;:::i;:::-;32117:139;;31844:419;;;:::o;32269:220::-;32409:34;32405:1;32397:6;32393:14;32386:58;32478:3;32473:2;32465:6;32461:15;32454:28;32269:220;:::o;32495:366::-;32637:3;32658:67;32722:2;32717:3;32658:67;:::i;:::-;32651:74;;32734:93;32823:3;32734:93;:::i;:::-;32852:2;32847:3;32843:12;32836:19;;32495:366;;;:::o;32867:419::-;33033:4;33071:2;33060:9;33056:18;33048:26;;33120:9;33114:4;33110:20;33106:1;33095:9;33091:17;33084:47;33148:131;33274:4;33148:131;:::i;:::-;33140:139;;32867:419;;;:::o;33292:175::-;33432:27;33428:1;33420:6;33416:14;33409:51;33292:175;:::o;33473:366::-;33615:3;33636:67;33700:2;33695:3;33636:67;:::i;:::-;33629:74;;33712:93;33801:3;33712:93;:::i;:::-;33830:2;33825:3;33821:12;33814:19;;33473:366;;;:::o;33845:419::-;34011:4;34049:2;34038:9;34034:18;34026:26;;34098:9;34092:4;34088:20;34084:1;34073:9;34069:17;34062:47;34126:131;34252:4;34126:131;:::i;:::-;34118:139;;33845:419;;;:::o;34270:234::-;34410:34;34406:1;34398:6;34394:14;34387:58;34479:17;34474:2;34466:6;34462:15;34455:42;34270:234;:::o;34510:366::-;34652:3;34673:67;34737:2;34732:3;34673:67;:::i;:::-;34666:74;;34749:93;34838:3;34749:93;:::i;:::-;34867:2;34862:3;34858:12;34851:19;;34510:366;;;:::o;34882:419::-;35048:4;35086:2;35075:9;35071:18;35063:26;;35135:9;35129:4;35125:20;35121:1;35110:9;35106:17;35099:47;35163:131;35289:4;35163:131;:::i;:::-;35155:139;;34882:419;;;:::o;35307:148::-;35409:11;35446:3;35431:18;;35307:148;;;;:::o;35461:377::-;35567:3;35595:39;35628:5;35595:39;:::i;:::-;35650:89;35732:6;35727:3;35650:89;:::i;:::-;35643:96;;35748:52;35793:6;35788:3;35781:4;35774:5;35770:16;35748:52;:::i;:::-;35825:6;35820:3;35816:16;35809:23;;35571:267;35461:377;;;;:::o;35844:435::-;36024:3;36046:95;36137:3;36128:6;36046:95;:::i;:::-;36039:102;;36158:95;36249:3;36240:6;36158:95;:::i;:::-;36151:102;;36270:3;36263:10;;35844:435;;;;;:::o;36285:225::-;36425:34;36421:1;36413:6;36409:14;36402:58;36494:8;36489:2;36481:6;36477:15;36470:33;36285:225;:::o;36516:366::-;36658:3;36679:67;36743:2;36738:3;36679:67;:::i;:::-;36672:74;;36755:93;36844:3;36755:93;:::i;:::-;36873:2;36868:3;36864:12;36857:19;;36516:366;;;:::o;36888:419::-;37054:4;37092:2;37081:9;37077:18;37069:26;;37141:9;37135:4;37131:20;37127:1;37116:9;37112:17;37105:47;37169:131;37295:4;37169:131;:::i;:::-;37161:139;;36888:419;;;:::o;37313:231::-;37453:34;37449:1;37441:6;37437:14;37430:58;37522:14;37517:2;37509:6;37505:15;37498:39;37313:231;:::o;37550:366::-;37692:3;37713:67;37777:2;37772:3;37713:67;:::i;:::-;37706:74;;37789:93;37878:3;37789:93;:::i;:::-;37907:2;37902:3;37898:12;37891:19;;37550:366;;;:::o;37922:419::-;38088:4;38126:2;38115:9;38111:18;38103:26;;38175:9;38169:4;38165:20;38161:1;38150:9;38146:17;38139:47;38203:131;38329:4;38203:131;:::i;:::-;38195:139;;37922:419;;;:::o;38347:228::-;38487:34;38483:1;38475:6;38471:14;38464:58;38556:11;38551:2;38543:6;38539:15;38532:36;38347:228;:::o;38581:366::-;38723:3;38744:67;38808:2;38803:3;38744:67;:::i;:::-;38737:74;;38820:93;38909:3;38820:93;:::i;:::-;38938:2;38933:3;38929:12;38922:19;;38581:366;;;:::o;38953:419::-;39119:4;39157:2;39146:9;39142:18;39134:26;;39206:9;39200:4;39196:20;39192:1;39181:9;39177:17;39170:47;39234:131;39360:4;39234:131;:::i;:::-;39226:139;;38953:419;;;:::o;39378:223::-;39518:34;39514:1;39506:6;39502:14;39495:58;39587:6;39582:2;39574:6;39570:15;39563:31;39378:223;:::o;39607:366::-;39749:3;39770:67;39834:2;39829:3;39770:67;:::i;:::-;39763:74;;39846:93;39935:3;39846:93;:::i;:::-;39964:2;39959:3;39955:12;39948:19;;39607:366;;;:::o;39979:419::-;40145:4;40183:2;40172:9;40168:18;40160:26;;40232:9;40226:4;40222:20;40218:1;40207:9;40203:17;40196:47;40260:131;40386:4;40260:131;:::i;:::-;40252:139;;39979:419;;;:::o;40404:191::-;40444:4;40464:20;40482:1;40464:20;:::i;:::-;40459:25;;40498:20;40516:1;40498:20;:::i;:::-;40493:25;;40537:1;40534;40531:8;40528:34;;;40542:18;;:::i;:::-;40528:34;40587:1;40584;40580:9;40572:17;;40404:191;;;;:::o;40601:237::-;40741:34;40737:1;40729:6;40725:14;40718:58;40810:20;40805:2;40797:6;40793:15;40786:45;40601:237;:::o;40844:366::-;40986:3;41007:67;41071:2;41066:3;41007:67;:::i;:::-;41000:74;;41083:93;41172:3;41083:93;:::i;:::-;41201:2;41196:3;41192:12;41185:19;;40844:366;;;:::o;41216:419::-;41382:4;41420:2;41409:9;41405:18;41397:26;;41469:9;41463:4;41459:20;41455:1;41444:9;41440:17;41433:47;41497:131;41623:4;41497:131;:::i;:::-;41489:139;;41216:419;;;:::o;41641:180::-;41689:77;41686:1;41679:88;41786:4;41783:1;41776:15;41810:4;41807:1;41800:15;41827:185;41867:1;41884:20;41902:1;41884:20;:::i;:::-;41879:25;;41918:20;41936:1;41918:20;:::i;:::-;41913:25;;41957:1;41947:35;;41962:18;;:::i;:::-;41947:35;42004:1;42001;41997:9;41992:14;;41827:185;;;;:::o;42018:176::-;42050:1;42067:20;42085:1;42067:20;:::i;:::-;42062:25;;42101:20;42119:1;42101:20;:::i;:::-;42096:25;;42140:1;42130:35;;42145:18;;:::i;:::-;42130:35;42186:1;42183;42179:9;42174:14;;42018:176;;;;:::o;42200:98::-;42251:6;42285:5;42279:12;42269:22;;42200:98;;;:::o;42304:168::-;42387:11;42421:6;42416:3;42409:19;42461:4;42456:3;42452:14;42437:29;;42304:168;;;;:::o;42478:360::-;42564:3;42592:38;42624:5;42592:38;:::i;:::-;42646:70;42709:6;42704:3;42646:70;:::i;:::-;42639:77;;42725:52;42770:6;42765:3;42758:4;42751:5;42747:16;42725:52;:::i;:::-;42802:29;42824:6;42802:29;:::i;:::-;42797:3;42793:39;42786:46;;42568:270;42478:360;;;;:::o;42844:640::-;43039:4;43077:3;43066:9;43062:19;43054:27;;43091:71;43159:1;43148:9;43144:17;43135:6;43091:71;:::i;:::-;43172:72;43240:2;43229:9;43225:18;43216:6;43172:72;:::i;:::-;43254;43322:2;43311:9;43307:18;43298:6;43254:72;:::i;:::-;43373:9;43367:4;43363:20;43358:2;43347:9;43343:18;43336:48;43401:76;43472:4;43463:6;43401:76;:::i;:::-;43393:84;;42844:640;;;;;;;:::o;43490:141::-;43546:5;43577:6;43571:13;43562:22;;43593:32;43619:5;43593:32;:::i;:::-;43490:141;;;;:::o;43637:349::-;43706:6;43755:2;43743:9;43734:7;43730:23;43726:32;43723:119;;;43761:79;;:::i;:::-;43723:119;43881:1;43906:63;43961:7;43952:6;43941:9;43937:22;43906:63;:::i;:::-;43896:73;;43852:127;43637:349;;;;:::o;43992:182::-;44132:34;44128:1;44120:6;44116:14;44109:58;43992:182;:::o;44180:366::-;44322:3;44343:67;44407:2;44402:3;44343:67;:::i;:::-;44336:74;;44419:93;44508:3;44419:93;:::i;:::-;44537:2;44532:3;44528:12;44521:19;;44180:366;;;:::o;44552:419::-;44718:4;44756:2;44745:9;44741:18;44733:26;;44805:9;44799:4;44795:20;44791:1;44780:9;44776:17;44769:47;44833:131;44959:4;44833:131;:::i;:::-;44825:139;;44552:419;;;:::o;44977:178::-;45117:30;45113:1;45105:6;45101:14;45094:54;44977:178;:::o;45161:366::-;45303:3;45324:67;45388:2;45383:3;45324:67;:::i;:::-;45317:74;;45400:93;45489:3;45400:93;:::i;:::-;45518:2;45513:3;45509:12;45502:19;;45161:366;;;:::o;45533:419::-;45699:4;45737:2;45726:9;45722:18;45714:26;;45786:9;45780:4;45776:20;45772:1;45761:9;45757:17;45750:47;45814:131;45940:4;45814:131;:::i;:::-;45806:139;;45533:419;;;:::o;45958:180::-;46006:77;46003:1;45996:88;46103:4;46100:1;46093:15;46127:4;46124:1;46117:15

Swarm Source

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