ETH Price: $3,449.60 (-0.17%)
Gas: 3 Gwei

Token

Where There is Smoke There is Fire (WTISTIF)
 

Overview

Max Total Supply

25 WTISTIF

Holders

19

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 WTISTIF
0x532a408e6331e907f5a701312602301a9118a7bd
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:
BURN1NFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 2 of 14: Burn1NFT.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;

import "./MerkleProof.sol";
import "./Ownable.sol";
import "./ERC721Enumerable.sol";

contract BURN1NFT is ERC721Enumerable, Ownable {
    string  public              baseURI             = "https://mint.burn1.today/tokens/";
    
    address public              proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;
    address public              payee1               = 0xDd5B50F91c336B6BFdb2AD8d5EEc202446B4942e;
    address public              payee2               = 0x2f08D19E7Fe9150A75944A2c2589c2dE1537944b;
    address public              payee3               = 0xBD2BFE0E9E8b2C533Bc102266b66a0aF312f6186;
    address public              payee4               = 0xf2ad5aa8387353De80c46882efa1bC5cF68a9e72;

    bytes32 public              whitelistMerkleRoot;

    uint256 public              saleStatus          = 0; // 0 closed, 1 BL, 2 WL, 3 PUBLIC
    uint256 public constant     MAX_SUPPLY          = 4200;
    uint256 public              MAX_GIVEAWAY        = 100;

    uint256 public constant     MAX_PER_TX          = 20;
    uint256 public              priceInWei          = 0.42 ether;

    uint256 public constant     WL_MAX_PER_TX       = 20;
    uint256 public              WL_priceInWei       = 0.33 ether;

    mapping(address => bool) public projectProxy;
    mapping(address => uint) public addressToMinted;

    string public               PROVENANCE_HASH;

    constructor()
        ERC721("Where There is Smoke There is Fire", "WTISTIF")
        {}    

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

    function setMetaDataProvenanceHash(string memory _hash) public onlyOwner {
        PROVENANCE_HASH = _hash;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return string(abi.encodePacked(baseURI, Strings.toString(_tokenId), ".json"));
    }

    function setProxyRegistryAddress(address _proxyRegistryAddress) external onlyOwner {
        proxyRegistryAddress = _proxyRegistryAddress;
    }

    function setWhitelistMerkleRoot(bytes32 _whitelistMerkleRoot) external onlyOwner {
        // don't forget to prepend: 0x
        whitelistMerkleRoot = _whitelistMerkleRoot;
    }

    function setPriceInWei(uint256 _priceInWei) external onlyOwner {
        priceInWei = _priceInWei;
    }

    function setWLPPriceInWei(uint256 _WLPPriceInWei) external onlyOwner {
        WL_priceInWei = _WLPPriceInWei;
    }

    function setSaleStatus(uint256 _status) external onlyOwner {
        require(saleStatus < 4 && saleStatus >= 0, "Invalid status.");
        saleStatus = _status;
    }

    function updatePayee(address _payee, uint256 _index) external onlyOwner {
        require(_index > 0 && _index <= 4, "Invalid index.");
        if (_index == 1) {
            payee1 = _payee;
        } else if (_index == 2) {
            payee2 = _payee;
        } else if (_index == 3) {
            payee3 = _payee;
        } else if (_index == 4) {
            payee4 = _payee;
        }
    }

    function mint(uint256 count, bytes32[] calldata proof) public payable {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        uint256 totalSupply = _owners.length;
        require(totalSupply + count < MAX_SUPPLY, "Excedes max supply.");
        if (saleStatus == 1) {
            require(MerkleProof.verify(proof, whitelistMerkleRoot, leaf), 'Not on whitelist. Merkle Proof fail.');
            require(addressToMinted[_msgSender()] + count <= WL_MAX_PER_TX, "Exceeds whitelist supply"); 
            require(count * WL_priceInWei == msg.value, "Invalid funds provided.");
            addressToMinted[_msgSender()] += count;
        }  else if (saleStatus == 2) {
            require(count < MAX_PER_TX, "Exceeds max per transaction.");
            require(count * priceInWei == msg.value, "Invalid funds provided.");
        } else {
            require(false, "Sale not open.");
        }
        
        for(uint i; i < count; i++) { 
            _mint(_msgSender(), totalSupply + i);
        }
    }

    function promoMint(uint _qty, address _to) public onlyOwner {
        require(MAX_GIVEAWAY - _qty >= 0, "Exceeds max giveaway.");
        uint256 totalSupply = _owners.length;
        require(totalSupply + _qty < MAX_SUPPLY, "Excedes max supply.");
        for (uint i = 0; i < _qty; i++) {
            _mint(_to, totalSupply + i);
        }
        MAX_GIVEAWAY -= _qty;
    }

    function burn(uint256 tokenId) public { 
        require(_isApprovedOrOwner(_msgSender(), tokenId), "Not approved to burn.");
        _burn(tokenId);
    }

    function withdraw() public  {
        (bool success , ) = payee1.call{value: address(this).balance * 6500 / 10000}("");
        require(success, "Failed to send to payee1.");
        (bool success2, ) = payee2.call{value: address(this).balance * 1125 / 10000}("");
        require(success2, "Failed to send to payee2.");
        (bool success3, ) = payee3.call{value: address(this).balance *  375 / 10000}("");
        require(success3, "Failed to send to payee3.");
        (bool success4, ) = payee4.call{value: address(this).balance * 2000 / 10000}("");
        require(success4, "Failed to send to payee4.");
    }

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

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

    function batchTransferFrom(address _from, address _to, uint256[] memory _tokenIds) public {
        for (uint256 i = 0; i < _tokenIds.length; i++) {
            transferFrom(_from, _to, _tokenIds[i]);
        }
    }

    function batchSafeTransferFrom(address _from, address _to, uint256[] memory _tokenIds, bytes memory data_) public {
        for (uint256 i = 0; i < _tokenIds.length; i++) {
            safeTransferFrom(_from, _to, _tokenIds[i], data_);
        }
    }

    function isOwnerOf(address account, uint256[] calldata _tokenIds) external view returns (bool){
        for(uint256 i; i < _tokenIds.length; ++i ){
            if(_owners[_tokenIds[i]] != account)
                return false;
        }

        return true;
    }

    function isApprovedForAll(address _owner, address operator) public view override returns (bool) {
        OpenSeaProxyRegistry proxyRegistry = OpenSeaProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(_owner)) == operator || projectProxy[operator]) return true;
        return super.isApprovedForAll(_owner, operator);
    }

    function _mint(address to, uint256 tokenId) internal virtual override {
        _owners.push(to);
        emit Transfer(address(0), to, tokenId);
    }
}

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

File 1 of 14: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.3.2 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 14: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.3.2 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 4 of 14: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 5 of 14: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";
import "./Address.sol";

abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;
    
    string private _name;
    string private _symbol;

    // Mapping from token ID to owner address
    address[] internal _owners;

    mapping(uint256 => address) private _tokenApprovals;
    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 (uint) 
    {
        require(owner != address(0), "ERC721: balance query for the zero address");

        uint count;
        for( uint i; i < _owners.length; ++i ){
          if( owner == _owners[i] )
            ++count;
        }
        return count;
    }

    /**
     * @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 {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 tokenId < _owners.length && _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);
        _owners.push(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);
        _owners[tokenId] = address(0);

        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);
        _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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

File 6 of 14: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;

import "./ERC721.sol";
import "./IERC721Enumerable.sol"; 

/**
 * @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 but rips out the core of the gas-wasting processing that comes from OpenZeppelin.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    /**
     * @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-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _owners.length;
    }

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

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

        uint count;
        for(uint i; i < _owners.length; i++){
            if(owner == _owners[i]){
                if(count == index) return i;
                else count++;
            }
        }

        revert("ERC721Enumerable: owner index out of bounds");
    }
}

File 7 of 14: IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.3.2 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 8 of 14: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 14: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @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 10 of 14: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 11 of 14: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 12 of 14: MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 13 of 14: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.3.2 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

File 14 of 14: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.3.2 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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":"MAX_GIVEAWAY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_priceInWei","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressToMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"},{"internalType":"bytes","name":"data_","type":"bytes"}],"name":"batchSafeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"batchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","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":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"isOwnerOf","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payee1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payee2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payee3","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payee4","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceInWei","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"projectProxy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_qty","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"promoMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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":"saleStatus","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":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hash","type":"string"}],"name":"setMetaDataProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_priceInWei","type":"uint256"}],"name":"setPriceInWei","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"name":"setProxyRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_status","type":"uint256"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_WLPPriceInWei","type":"uint256"}],"name":"setWLPPriceInWei","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistMerkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","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":[{"internalType":"address","name":"_payee","type":"address"},{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"updatePayee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280602081526020017f68747470733a2f2f6d696e742e6275726e312e746f6461792f746f6b656e732f8152506006908051906020019062000051929190620003a3565b5073a5409ec958c83c3f309868babaca7c86dcb077c1600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073dd5b50f91c336b6bfdb2ad8d5eec202446b4942e600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550732f08d19e7fe9150a75944a2c2589c2de1537944b600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073bd2bfe0e9e8b2c533bc102266b66a0af312f6186600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073f2ad5aa8387353de80c46882efa1bc5cf68a9e72600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600d556064600e556705d423c655aa0000600f55670494654067e100006010553480156200022a57600080fd5b5060405180606001604052806022815260200162005ed8602291396040518060400160405280600781526020017f5754495354494600000000000000000000000000000000000000000000000000815250816000908051906020019062000293929190620003a3565b508060019080519060200190620002ac929190620003a3565b505050620002cf620002c3620002d560201b60201c565b620002dd60201b60201c565b620004b8565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003b19062000453565b90600052602060002090601f016020900481019282620003d5576000855562000421565b82601f10620003f057805160ff191683800117855562000421565b8280016001018555821562000421579182015b828111156200042057825182559160200191906001019062000403565b5b50905062000430919062000434565b5090565b5b808211156200044f57600081600090555060010162000435565b5090565b600060028204905060018216806200046c57607f821691505b6020821081141562000483576200048262000489565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b615a1080620004c86000396000f3fe6080604052600436106102ff5760003560e01c806370a0823111610190578063c87b56dd116100dc578063f29f15af11610095578063f43a22dc1161006f578063f43a22dc14610b91578063f9020e3314610bbc578063ff1b655614610be7578063ffd69c0e14610c12576102ff565b8063f29f15af14610b16578063f2fde38b14610b3f578063f3993d1114610b68576102ff565b8063c87b56dd146109f4578063cd7c032614610a31578063d26ea6c014610a5c578063dc6e63a414610a85578063e985e9c514610aae578063eaa6074214610aeb576102ff565b8063a22cb46511610149578063ba41b0c611610123578063ba41b0c61461095b578063bd32fb6614610977578063c0f2f251146109a0578063c79b25cf146109cb576102ff565b8063a22cb465146108de578063aa98e0c614610907578063b88d4fde14610932576102ff565b806370a08231146107ce578063715018a61461080b5780638774e5d0146108225780638da5cb5b1461084b57806395d89b41146108765780639ec00c95146108a1576102ff565b806346ffdf951161024f57806355042e33116102085780635bab26e2116101e25780635bab26e2146107005780636352211e1461073d578063651247f51461077a5780636c0360eb146107a3576102ff565b806355042e331461068357806355f804b3146106ae5780635a4fee30146106d7576102ff565b806346ffdf951461055f5780634c5b7a29146105885780634d44660c146105b35780634e99522d146105f05780634f6ccce71461061b5780635147ef2014610658576102ff565b80632f745c59116102bc5780633ccfd60b116102965780633ccfd60b146104b957806342842e0e146104d057806342966c68146104f9578063438b630014610522576102ff565b80632f745c591461042657806332cb6b0c146104635780633c8da5881461048e576102ff565b806301ffc9a71461030457806306fdde0314610341578063081812fc1461036c578063095ea7b3146103a957806318160ddd146103d257806323b872dd146103fd575b600080fd5b34801561031057600080fd5b5061032b60048036038101906103269190613fd2565b610c3d565b60405161033891906148b1565b60405180910390f35b34801561034d57600080fd5b50610356610cb7565b60405161036391906148e7565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e91906140a2565b610d49565b6040516103a09190614828565b60405180910390f35b3480156103b557600080fd5b506103d060048036038101906103cb9190613f65565b610dce565b005b3480156103de57600080fd5b506103e7610ee6565b6040516103f49190614cc9565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f9190613def565b610ef3565b005b34801561043257600080fd5b5061044d60048036038101906104489190613f65565b610f53565b60405161045a9190614cc9565b60405180910390f35b34801561046f57600080fd5b50610478611098565b6040516104859190614cc9565b60405180910390f35b34801561049a57600080fd5b506104a361109e565b6040516104b09190614cc9565b60405180910390f35b3480156104c557600080fd5b506104ce6110a4565b005b3480156104dc57600080fd5b506104f760048036038101906104f29190613def565b61144a565b005b34801561050557600080fd5b50610520600480360381019061051b91906140a2565b61146a565b005b34801561052e57600080fd5b5061054960048036038101906105449190613c74565b6114c6565b604051610556919061488f565b60405180910390f35b34801561056b57600080fd5b5061058660048036038101906105819190613f65565b6115d0565b005b34801561059457600080fd5b5061059d6117db565b6040516105aa9190614cc9565b60405180910390f35b3480156105bf57600080fd5b506105da60048036038101906105d59190613ec5565b6117e1565b6040516105e791906148b1565b60405180910390f35b3480156105fc57600080fd5b506106056118a2565b6040516106129190614828565b60405180910390f35b34801561062757600080fd5b50610642600480360381019061063d91906140a2565b6118c8565b60405161064f9190614cc9565b60405180910390f35b34801561066457600080fd5b5061066d611919565b60405161067a9190614828565b60405180910390f35b34801561068f57600080fd5b5061069861193f565b6040516106a59190614cc9565b60405180910390f35b3480156106ba57600080fd5b506106d560048036038101906106d09190614059565b611944565b005b3480156106e357600080fd5b506106fe60048036038101906106f99190613d50565b6119da565b005b34801561070c57600080fd5b5061072760048036038101906107229190613c74565b611a26565b60405161073491906148b1565b60405180910390f35b34801561074957600080fd5b50610764600480360381019061075f91906140a2565b611a46565b6040516107719190614828565b60405180910390f35b34801561078657600080fd5b506107a1600480360381019061079c91906140a2565b611b03565b005b3480156107af57600080fd5b506107b8611b89565b6040516107c591906148e7565b60405180910390f35b3480156107da57600080fd5b506107f560048036038101906107f09190613c74565b611c17565b6040516108029190614cc9565b60405180910390f35b34801561081757600080fd5b50610820611d33565b005b34801561082e57600080fd5b50610849600480360381019061084491906140a2565b611dbb565b005b34801561085757600080fd5b50610860611e41565b60405161086d9190614828565b60405180910390f35b34801561088257600080fd5b5061088b611e6b565b60405161089891906148e7565b60405180910390f35b3480156108ad57600080fd5b506108c860048036038101906108c39190613c74565b611efd565b6040516108d59190614cc9565b60405180910390f35b3480156108ea57600080fd5b5061090560048036038101906109009190613f25565b611f15565b005b34801561091357600080fd5b5061091c612096565b60405161092991906148cc565b60405180910390f35b34801561093e57600080fd5b5061095960048036038101906109549190613e42565b61209c565b005b6109756004803603810190610970919061410f565b6120fe565b005b34801561098357600080fd5b5061099e60048036038101906109999190613fa5565b612487565b005b3480156109ac57600080fd5b506109b561250d565b6040516109c29190614cc9565b60405180910390f35b3480156109d757600080fd5b506109f260048036038101906109ed91906140cf565b612513565b005b348015610a0057600080fd5b50610a1b6004803603810190610a1691906140a2565b61268b565b604051610a2891906148e7565b60405180910390f35b348015610a3d57600080fd5b50610a46612707565b604051610a539190614828565b60405180910390f35b348015610a6857600080fd5b50610a836004803603810190610a7e9190613c74565b61272d565b005b348015610a9157600080fd5b50610aac6004803603810190610aa79190614059565b6127ed565b005b348015610aba57600080fd5b50610ad56004803603810190610ad09190613ca1565b612883565b604051610ae291906148b1565b60405180910390f35b348015610af757600080fd5b50610b006129d9565b604051610b0d9190614828565b60405180910390f35b348015610b2257600080fd5b50610b3d6004803603810190610b3891906140a2565b6129ff565b005b348015610b4b57600080fd5b50610b666004803603810190610b619190613c74565b612ad9565b005b348015610b7457600080fd5b50610b8f6004803603810190610b8a9190613ce1565b612bd1565b005b348015610b9d57600080fd5b50610ba6612c1b565b604051610bb39190614cc9565b60405180910390f35b348015610bc857600080fd5b50610bd1612c20565b604051610bde9190614cc9565b60405180910390f35b348015610bf357600080fd5b50610bfc612c26565b604051610c0991906148e7565b60405180910390f35b348015610c1e57600080fd5b50610c27612cb4565b604051610c349190614828565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610cb05750610caf82612cda565b5b9050919050565b606060008054610cc69061501a565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf29061501a565b8015610d3f5780601f10610d1457610100808354040283529160200191610d3f565b820191906000526020600020905b815481529060010190602001808311610d2257829003601f168201915b5050505050905090565b6000610d5482612dbc565b610d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8a90614b49565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610dd982611a46565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4190614c09565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e69612e44565b73ffffffffffffffffffffffffffffffffffffffff161480610e985750610e9781610e92612e44565b612883565b5b610ed7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ece90614a69565b60405180910390fd5b610ee18383612e4c565b505050565b6000600280549050905090565b610f04610efe612e44565b82612f05565b610f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3a90614c29565b60405180910390fd5b610f4e838383612fe3565b505050565b6000610f5e83611c17565b8210610f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9690614929565b60405180910390fd5b6000805b6002805490508110156110565760028181548110610fc457610fc36151a8565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156110435783821415611034578092505050611092565b818061103f9061507d565b9250505b808061104e9061507d565b915050610fa3565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108990614929565b60405180910390fd5b92915050565b61106881565b600f5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612710611964476110f09190614eba565b6110fa9190614e89565b60405161110690614813565b60006040518083038185875af1925050503d8060008114611143576040519150601f19603f3d011682016040523d82523d6000602084013e611148565b606091505b505090508061118c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118390614a49565b60405180910390fd5b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612710610465476111d89190614eba565b6111e29190614e89565b6040516111ee90614813565b60006040518083038185875af1925050503d806000811461122b576040519150601f19603f3d011682016040523d82523d6000602084013e611230565b606091505b5050905080611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b90614989565b60405180910390fd5b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612710610177476112c09190614eba565b6112ca9190614e89565b6040516112d690614813565b60006040518083038185875af1925050503d8060008114611313576040519150601f19603f3d011682016040523d82523d6000602084013e611318565b606091505b505090508061135c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135390614a09565b60405180910390fd5b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166127106107d0476113a89190614eba565b6113b29190614e89565b6040516113be90614813565b60006040518083038185875af1925050503d80600081146113fb576040519150601f19603f3d011682016040523d82523d6000602084013e611400565b606091505b5050905080611444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143b90614b09565b60405180910390fd5b50505050565b6114658383836040518060200160405280600081525061209c565b505050565b61147b611475612e44565b82612f05565b6114ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b190614be9565b60405180910390fd5b6114c38161319c565b50565b606060006114d383611c17565b9050600081141561153057600067ffffffffffffffff8111156114f9576114f86151d7565b5b6040519080825280602002602001820160405280156115275781602001602082028036833780820191505090505b509150506115cb565b60008167ffffffffffffffff81111561154c5761154b6151d7565b5b60405190808252806020026020018201604052801561157a5781602001602082028036833780820191505090505b50905060005b828110156115c4576115928582610f53565b8282815181106115a5576115a46151a8565b5b60200260200101818152505080806115bc9061507d565b915050611580565b5080925050505b919050565b6115d8612e44565b73ffffffffffffffffffffffffffffffffffffffff166115f6611e41565b73ffffffffffffffffffffffffffffffffffffffff161461164c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164390614b69565b60405180910390fd5b60008111801561165d575060048111155b61169c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169390614ae9565b60405180910390fd5b60018114156116eb5781600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506117d7565b600281141561173a5781600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506117d6565b60038114156117895781600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506117d5565b60048114156117d45781600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5b5b5b5050565b600e5481565b6000805b83839050811015611895578473ffffffffffffffffffffffffffffffffffffffff16600285858481811061181c5761181b6151a8565b5b9050602002013581548110611834576118336151a8565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461188457600091505061189b565b8061188e9061507d565b90506117e5565b50600190505b9392505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006002805490508210611911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190890614c89565b60405180910390fd5b819050919050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601481565b61194c612e44565b73ffffffffffffffffffffffffffffffffffffffff1661196a611e41565b73ffffffffffffffffffffffffffffffffffffffff16146119c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b790614b69565b60405180910390fd5b80600690805190602001906119d6929190613914565b5050565b60005b8251811015611a1f57611a0c85858584815181106119fe576119fd6151a8565b5b60200260200101518561209c565b8080611a179061507d565b9150506119dd565b5050505050565b60116020528060005260406000206000915054906101000a900460ff1681565b60008060028381548110611a5d57611a5c6151a8565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af190614aa9565b60405180910390fd5b80915050919050565b611b0b612e44565b73ffffffffffffffffffffffffffffffffffffffff16611b29611e41565b73ffffffffffffffffffffffffffffffffffffffff1614611b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7690614b69565b60405180910390fd5b8060108190555050565b60068054611b969061501a565b80601f0160208091040260200160405190810160405280929190818152602001828054611bc29061501a565b8015611c0f5780601f10611be457610100808354040283529160200191611c0f565b820191906000526020600020905b815481529060010190602001808311611bf257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7f90614a89565b60405180910390fd5b6000805b600280549050811015611d295760028181548110611cad57611cac6151a8565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d185781611d159061507d565b91505b80611d229061507d565b9050611c8c565b5080915050919050565b611d3b612e44565b73ffffffffffffffffffffffffffffffffffffffff16611d59611e41565b73ffffffffffffffffffffffffffffffffffffffff1614611daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da690614b69565b60405180910390fd5b611db9600061327e565b565b611dc3612e44565b73ffffffffffffffffffffffffffffffffffffffff16611de1611e41565b73ffffffffffffffffffffffffffffffffffffffff1614611e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2e90614b69565b60405180910390fd5b80600f8190555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611e7a9061501a565b80601f0160208091040260200160405190810160405280929190818152602001828054611ea69061501a565b8015611ef35780601f10611ec857610100808354040283529160200191611ef3565b820191906000526020600020905b815481529060010190602001808311611ed657829003601f168201915b5050505050905090565b60126020528060005260406000206000915090505481565b611f1d612e44565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f82906149e9565b60405180910390fd5b8060046000611f98612e44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612045612e44565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161208a91906148b1565b60405180910390a35050565b600c5481565b6120ad6120a7612e44565b83612f05565b6120ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e390614c29565b60405180910390fd5b6120f884848484613344565b50505050565b60003360405160200161211191906147c9565b6040516020818303038152906040528051906020012090506000600280549050905061106885826121429190614e33565b10612182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217990614909565b60405180910390fd5b6001600d541415612360576121db848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c54846133a0565b61221a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221190614bc9565b60405180910390fd5b60148560126000612229612e44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461226e9190614e33565b11156122af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a6906149a9565b60405180910390fd5b34601054866122be9190614eba565b146122fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f590614ac9565b60405180910390fd5b846012600061230b612e44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123549190614e33565b92505081905550612445565b6002600d54141561240257601485106123ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a590614c69565b60405180910390fd5b34600f54866123bd9190614eba565b146123fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f490614ac9565b60405180910390fd5b612444565b6000612443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243a90614b89565b60405180910390fd5b5b5b60005b8581101561247f5761246c61245b612e44565b82846124679190614e33565b6133b7565b80806124779061507d565b915050612448565b505050505050565b61248f612e44565b73ffffffffffffffffffffffffffffffffffffffff166124ad611e41565b73ffffffffffffffffffffffffffffffffffffffff1614612503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fa90614b69565b60405180910390fd5b80600c8190555050565b60105481565b61251b612e44565b73ffffffffffffffffffffffffffffffffffffffff16612539611e41565b73ffffffffffffffffffffffffffffffffffffffff161461258f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258690614b69565b60405180910390fd5b600082600e5461259f9190614f14565b10156125e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d790614c49565b60405180910390fd5b6000600280549050905061106883826125f99190614e33565b10612639576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263090614909565b60405180910390fd5b60005b8381101561266c576126598382846126549190614e33565b6133b7565b80806126649061507d565b91505061263c565b5082600e600082825461267f9190614f14565b92505081905550505050565b606061269682612dbc565b6126d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126cc90614b29565b60405180910390fd5b60066126e08361347a565b6040516020016126f19291906147e4565b6040516020818303038152906040529050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612735612e44565b73ffffffffffffffffffffffffffffffffffffffff16612753611e41565b73ffffffffffffffffffffffffffffffffffffffff16146127a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a090614b69565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6127f5612e44565b73ffffffffffffffffffffffffffffffffffffffff16612813611e41565b73ffffffffffffffffffffffffffffffffffffffff1614612869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286090614b69565b60405180910390fd5b806013908051906020019061287f929190613914565b5050565b600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016128fb9190614828565b60206040518083038186803b15801561291357600080fd5b505afa158015612927573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061294b919061402c565b73ffffffffffffffffffffffffffffffffffffffff1614806129b65750601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156129c55760019150506129d3565b6129cf84846135db565b9150505b92915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612a07612e44565b73ffffffffffffffffffffffffffffffffffffffff16612a25611e41565b73ffffffffffffffffffffffffffffffffffffffff1614612a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7290614b69565b60405180910390fd5b6004600d54108015612a9057506000600d5410155b612acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac690614ca9565b60405180910390fd5b80600d8190555050565b612ae1612e44565b73ffffffffffffffffffffffffffffffffffffffff16612aff611e41565b73ffffffffffffffffffffffffffffffffffffffff1614612b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4c90614b69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbc90614969565b60405180910390fd5b612bce8161327e565b50565b60005b8151811015612c1557612c028484848481518110612bf557612bf46151a8565b5b6020026020010151610ef3565b8080612c0d9061507d565b915050612bd4565b50505050565b601481565b600d5481565b60138054612c339061501a565b80601f0160208091040260200160405190810160405280929190818152602001828054612c5f9061501a565b8015612cac5780601f10612c8157610100808354040283529160200191612cac565b820191906000526020600020905b815481529060010190602001808311612c8f57829003601f168201915b505050505081565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612da557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612db55750612db48261366f565b5b9050919050565b600060028054905082108015612e3d5750600073ffffffffffffffffffffffffffffffffffffffff1660028381548110612df957612df86151a8565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612ebf83611a46565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612f1082612dbc565b612f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4690614a29565b60405180910390fd5b6000612f5a83611a46565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612fc957508373ffffffffffffffffffffffffffffffffffffffff16612fb184610d49565b73ffffffffffffffffffffffffffffffffffffffff16145b80612fda5750612fd98185612883565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661300382611a46565b73ffffffffffffffffffffffffffffffffffffffff1614613059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305090614ba9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c0906149c9565b60405180910390fd5b6130d48383836136d9565b6130df600082612e4c565b81600282815481106130f4576130f36151a8565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006131a782611a46565b90506131b5816000846136d9565b6131c0600083612e4c565b6000600283815481106131d6576131d56151a8565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61334f848484612fe3565b61335b848484846136de565b61339a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339190614949565b60405180910390fd5b50505050565b6000826133ad8584613875565b1490509392505050565b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b606060008214156134c2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506135d6565b600082905060005b600082146134f45780806134dd9061507d565b915050600a826134ed9190614e89565b91506134ca565b60008167ffffffffffffffff8111156135105761350f6151d7565b5b6040519080825280601f01601f1916602001820160405280156135425781602001600182028036833780820191505090505b5090505b600085146135cf5760018261355b9190614f14565b9150600a8561356a91906150ea565b60306135769190614e33565b60f81b81838151811061358c5761358b6151a8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856135c89190614e89565b9450613546565b8093505050505b919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b60006136ff8473ffffffffffffffffffffffffffffffffffffffff166138ea565b15613868578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613728612e44565b8786866040518563ffffffff1660e01b815260040161374a9493929190614843565b602060405180830381600087803b15801561376457600080fd5b505af192505050801561379557506040513d601f19601f820116820180604052508101906137929190613fff565b60015b613818573d80600081146137c5576040519150601f19603f3d011682016040523d82523d6000602084013e6137ca565b606091505b50600081511415613810576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161380790614949565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061386d565b600190505b949350505050565b60008082905060005b84518110156138df57600085828151811061389c5761389b6151a8565b5b602002602001015190508083116138be576138b783826138fd565b92506138cb565b6138c881846138fd565b92505b5080806138d79061507d565b91505061387e565b508091505092915050565b600080823b905060008111915050919050565b600082600052816020526040600020905092915050565b8280546139209061501a565b90600052602060002090601f0160209004810192826139425760008555613989565b82601f1061395b57805160ff1916838001178555613989565b82800160010185558215613989579182015b8281111561398857825182559160200191906001019061396d565b5b509050613996919061399a565b5090565b5b808211156139b357600081600090555060010161399b565b5090565b60006139ca6139c584614d09565b614ce4565b905080838252602082019050828560208602820111156139ed576139ec615210565b5b60005b85811015613a1d5781613a038882613c5f565b8452602084019350602083019250506001810190506139f0565b5050509392505050565b6000613a3a613a3584614d35565b614ce4565b905082815260208101848484011115613a5657613a55615215565b5b613a61848285614fd8565b509392505050565b6000613a7c613a7784614d66565b614ce4565b905082815260208101848484011115613a9857613a97615215565b5b613aa3848285614fd8565b509392505050565b600081359050613aba81615950565b92915050565b60008083601f840112613ad657613ad561520b565b5b8235905067ffffffffffffffff811115613af357613af2615206565b5b602083019150836020820283011115613b0f57613b0e615210565b5b9250929050565b60008083601f840112613b2c57613b2b61520b565b5b8235905067ffffffffffffffff811115613b4957613b48615206565b5b602083019150836020820283011115613b6557613b64615210565b5b9250929050565b600082601f830112613b8157613b8061520b565b5b8135613b918482602086016139b7565b91505092915050565b600081359050613ba981615967565b92915050565b600081359050613bbe8161597e565b92915050565b600081359050613bd381615995565b92915050565b600081519050613be881615995565b92915050565b600082601f830112613c0357613c0261520b565b5b8135613c13848260208601613a27565b91505092915050565b600081519050613c2b816159ac565b92915050565b600082601f830112613c4657613c4561520b565b5b8135613c56848260208601613a69565b91505092915050565b600081359050613c6e816159c3565b92915050565b600060208284031215613c8a57613c8961521f565b5b6000613c9884828501613aab565b91505092915050565b60008060408385031215613cb857613cb761521f565b5b6000613cc685828601613aab565b9250506020613cd785828601613aab565b9150509250929050565b600080600060608486031215613cfa57613cf961521f565b5b6000613d0886828701613aab565b9350506020613d1986828701613aab565b925050604084013567ffffffffffffffff811115613d3a57613d3961521a565b5b613d4686828701613b6c565b9150509250925092565b60008060008060808587031215613d6a57613d6961521f565b5b6000613d7887828801613aab565b9450506020613d8987828801613aab565b935050604085013567ffffffffffffffff811115613daa57613da961521a565b5b613db687828801613b6c565b925050606085013567ffffffffffffffff811115613dd757613dd661521a565b5b613de387828801613bee565b91505092959194509250565b600080600060608486031215613e0857613e0761521f565b5b6000613e1686828701613aab565b9350506020613e2786828701613aab565b9250506040613e3886828701613c5f565b9150509250925092565b60008060008060808587031215613e5c57613e5b61521f565b5b6000613e6a87828801613aab565b9450506020613e7b87828801613aab565b9350506040613e8c87828801613c5f565b925050606085013567ffffffffffffffff811115613ead57613eac61521a565b5b613eb987828801613bee565b91505092959194509250565b600080600060408486031215613ede57613edd61521f565b5b6000613eec86828701613aab565b935050602084013567ffffffffffffffff811115613f0d57613f0c61521a565b5b613f1986828701613b16565b92509250509250925092565b60008060408385031215613f3c57613f3b61521f565b5b6000613f4a85828601613aab565b9250506020613f5b85828601613b9a565b9150509250929050565b60008060408385031215613f7c57613f7b61521f565b5b6000613f8a85828601613aab565b9250506020613f9b85828601613c5f565b9150509250929050565b600060208284031215613fbb57613fba61521f565b5b6000613fc984828501613baf565b91505092915050565b600060208284031215613fe857613fe761521f565b5b6000613ff684828501613bc4565b91505092915050565b6000602082840312156140155761401461521f565b5b600061402384828501613bd9565b91505092915050565b6000602082840312156140425761404161521f565b5b600061405084828501613c1c565b91505092915050565b60006020828403121561406f5761406e61521f565b5b600082013567ffffffffffffffff81111561408d5761408c61521a565b5b61409984828501613c31565b91505092915050565b6000602082840312156140b8576140b761521f565b5b60006140c684828501613c5f565b91505092915050565b600080604083850312156140e6576140e561521f565b5b60006140f485828601613c5f565b925050602061410585828601613aab565b9150509250929050565b6000806000604084860312156141285761412761521f565b5b600061413686828701613c5f565b935050602084013567ffffffffffffffff8111156141575761415661521a565b5b61416386828701613ac0565b92509250509250925092565b600061417b83836147ab565b60208301905092915050565b61419081614f48565b82525050565b6141a76141a282614f48565b6150c6565b82525050565b60006141b882614dbc565b6141c28185614dea565b93506141cd83614d97565b8060005b838110156141fe5781516141e5888261416f565b97506141f083614ddd565b9250506001810190506141d1565b5085935050505092915050565b61421481614f5a565b82525050565b61422381614f66565b82525050565b600061423482614dc7565b61423e8185614dfb565b935061424e818560208601614fe7565b61425781615224565b840191505092915050565b600061426d82614dd2565b6142778185614e17565b9350614287818560208601614fe7565b61429081615224565b840191505092915050565b60006142a682614dd2565b6142b08185614e28565b93506142c0818560208601614fe7565b80840191505092915050565b600081546142d98161501a565b6142e38186614e28565b945060018216600081146142fe576001811461430f57614342565b60ff19831686528186019350614342565b61431885614da7565b60005b8381101561433a5781548189015260018201915060208101905061431b565b838801955050505b50505092915050565b6000614358601383614e17565b915061436382615242565b602082019050919050565b600061437b602b83614e17565b91506143868261526b565b604082019050919050565b600061439e603283614e17565b91506143a9826152ba565b604082019050919050565b60006143c1602683614e17565b91506143cc82615309565b604082019050919050565b60006143e4601983614e17565b91506143ef82615358565b602082019050919050565b6000614407601883614e17565b915061441282615381565b602082019050919050565b600061442a602483614e17565b9150614435826153aa565b604082019050919050565b600061444d601983614e17565b9150614458826153f9565b602082019050919050565b6000614470601983614e17565b915061447b82615422565b602082019050919050565b6000614493602c83614e17565b915061449e8261544b565b604082019050919050565b60006144b6601983614e17565b91506144c18261549a565b602082019050919050565b60006144d9603883614e17565b91506144e4826154c3565b604082019050919050565b60006144fc602a83614e17565b915061450782615512565b604082019050919050565b600061451f602983614e17565b915061452a82615561565b604082019050919050565b6000614542601783614e17565b915061454d826155b0565b602082019050919050565b6000614565600e83614e17565b9150614570826155d9565b602082019050919050565b6000614588601983614e17565b915061459382615602565b602082019050919050565b60006145ab601583614e17565b91506145b68261562b565b602082019050919050565b60006145ce602c83614e17565b91506145d982615654565b604082019050919050565b60006145f1600583614e28565b91506145fc826156a3565b600582019050919050565b6000614614602083614e17565b915061461f826156cc565b602082019050919050565b6000614637600e83614e17565b9150614642826156f5565b602082019050919050565b600061465a602983614e17565b91506146658261571e565b604082019050919050565b600061467d602483614e17565b91506146888261576d565b604082019050919050565b60006146a0601583614e17565b91506146ab826157bc565b602082019050919050565b60006146c3602183614e17565b91506146ce826157e5565b604082019050919050565b60006146e6600083614e0c565b91506146f182615834565b600082019050919050565b6000614709603183614e17565b915061471482615837565b604082019050919050565b600061472c601583614e17565b915061473782615886565b602082019050919050565b600061474f601c83614e17565b915061475a826158af565b602082019050919050565b6000614772602c83614e17565b915061477d826158d8565b604082019050919050565b6000614795600f83614e17565b91506147a082615927565b602082019050919050565b6147b481614fce565b82525050565b6147c381614fce565b82525050565b60006147d58284614196565b60148201915081905092915050565b60006147f082856142cc565b91506147fc828461429b565b9150614807826145e4565b91508190509392505050565b600061481e826146d9565b9150819050919050565b600060208201905061483d6000830184614187565b92915050565b60006080820190506148586000830187614187565b6148656020830186614187565b61487260408301856147ba565b81810360608301526148848184614229565b905095945050505050565b600060208201905081810360008301526148a981846141ad565b905092915050565b60006020820190506148c6600083018461420b565b92915050565b60006020820190506148e1600083018461421a565b92915050565b600060208201905081810360008301526149018184614262565b905092915050565b600060208201905081810360008301526149228161434b565b9050919050565b600060208201905081810360008301526149428161436e565b9050919050565b6000602082019050818103600083015261496281614391565b9050919050565b60006020820190508181036000830152614982816143b4565b9050919050565b600060208201905081810360008301526149a2816143d7565b9050919050565b600060208201905081810360008301526149c2816143fa565b9050919050565b600060208201905081810360008301526149e28161441d565b9050919050565b60006020820190508181036000830152614a0281614440565b9050919050565b60006020820190508181036000830152614a2281614463565b9050919050565b60006020820190508181036000830152614a4281614486565b9050919050565b60006020820190508181036000830152614a62816144a9565b9050919050565b60006020820190508181036000830152614a82816144cc565b9050919050565b60006020820190508181036000830152614aa2816144ef565b9050919050565b60006020820190508181036000830152614ac281614512565b9050919050565b60006020820190508181036000830152614ae281614535565b9050919050565b60006020820190508181036000830152614b0281614558565b9050919050565b60006020820190508181036000830152614b228161457b565b9050919050565b60006020820190508181036000830152614b428161459e565b9050919050565b60006020820190508181036000830152614b62816145c1565b9050919050565b60006020820190508181036000830152614b8281614607565b9050919050565b60006020820190508181036000830152614ba28161462a565b9050919050565b60006020820190508181036000830152614bc28161464d565b9050919050565b60006020820190508181036000830152614be281614670565b9050919050565b60006020820190508181036000830152614c0281614693565b9050919050565b60006020820190508181036000830152614c22816146b6565b9050919050565b60006020820190508181036000830152614c42816146fc565b9050919050565b60006020820190508181036000830152614c628161471f565b9050919050565b60006020820190508181036000830152614c8281614742565b9050919050565b60006020820190508181036000830152614ca281614765565b9050919050565b60006020820190508181036000830152614cc281614788565b9050919050565b6000602082019050614cde60008301846147ba565b92915050565b6000614cee614cff565b9050614cfa828261504c565b919050565b6000604051905090565b600067ffffffffffffffff821115614d2457614d236151d7565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614d5057614d4f6151d7565b5b614d5982615224565b9050602081019050919050565b600067ffffffffffffffff821115614d8157614d806151d7565b5b614d8a82615224565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614e3e82614fce565b9150614e4983614fce565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e7e57614e7d61511b565b5b828201905092915050565b6000614e9482614fce565b9150614e9f83614fce565b925082614eaf57614eae61514a565b5b828204905092915050565b6000614ec582614fce565b9150614ed083614fce565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614f0957614f0861511b565b5b828202905092915050565b6000614f1f82614fce565b9150614f2a83614fce565b925082821015614f3d57614f3c61511b565b5b828203905092915050565b6000614f5382614fae565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000614fa782614f48565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615005578082015181840152602081019050614fea565b83811115615014576000848401525b50505050565b6000600282049050600182168061503257607f821691505b6020821081141561504657615045615179565b5b50919050565b61505582615224565b810181811067ffffffffffffffff82111715615074576150736151d7565b5b80604052505050565b600061508882614fce565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156150bb576150ba61511b565b5b600182019050919050565b60006150d1826150d8565b9050919050565b60006150e382615235565b9050919050565b60006150f582614fce565b915061510083614fce565b9250826151105761510f61514a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45786365646573206d617820737570706c792e00000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4661696c656420746f2073656e6420746f207061796565322e00000000000000600082015250565b7f457863656564732077686974656c69737420737570706c790000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4661696c656420746f2073656e6420746f207061796565332e00000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4661696c656420746f2073656e6420746f207061796565312e00000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642066756e64732070726f76696465642e000000000000000000600082015250565b7f496e76616c696420696e6465782e000000000000000000000000000000000000600082015250565b7f4661696c656420746f2073656e6420746f207061796565342e00000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f53616c65206e6f74206f70656e2e000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4e6f74206f6e2077686974656c6973742e204d65726b6c652050726f6f66206660008201527f61696c2e00000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420617070726f76656420746f206275726e2e0000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f45786365656473206d61782067697665617761792e0000000000000000000000600082015250565b7f45786365656473206d617820706572207472616e73616374696f6e2e00000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f496e76616c6964207374617475732e0000000000000000000000000000000000600082015250565b61595981614f48565b811461596457600080fd5b50565b61597081614f5a565b811461597b57600080fd5b50565b61598781614f66565b811461599257600080fd5b50565b61599e81614f70565b81146159a957600080fd5b50565b6159b581614f9c565b81146159c057600080fd5b50565b6159cc81614fce565b81146159d757600080fd5b5056fea2646970667358221220691720fcd7c398f702e5e3d769ec69cd8d3c423c666264b42593638113ba59ac64736f6c63430008070033576865726520546865726520697320536d6f6b652054686572652069732046697265

Deployed Bytecode

0x6080604052600436106102ff5760003560e01c806370a0823111610190578063c87b56dd116100dc578063f29f15af11610095578063f43a22dc1161006f578063f43a22dc14610b91578063f9020e3314610bbc578063ff1b655614610be7578063ffd69c0e14610c12576102ff565b8063f29f15af14610b16578063f2fde38b14610b3f578063f3993d1114610b68576102ff565b8063c87b56dd146109f4578063cd7c032614610a31578063d26ea6c014610a5c578063dc6e63a414610a85578063e985e9c514610aae578063eaa6074214610aeb576102ff565b8063a22cb46511610149578063ba41b0c611610123578063ba41b0c61461095b578063bd32fb6614610977578063c0f2f251146109a0578063c79b25cf146109cb576102ff565b8063a22cb465146108de578063aa98e0c614610907578063b88d4fde14610932576102ff565b806370a08231146107ce578063715018a61461080b5780638774e5d0146108225780638da5cb5b1461084b57806395d89b41146108765780639ec00c95146108a1576102ff565b806346ffdf951161024f57806355042e33116102085780635bab26e2116101e25780635bab26e2146107005780636352211e1461073d578063651247f51461077a5780636c0360eb146107a3576102ff565b806355042e331461068357806355f804b3146106ae5780635a4fee30146106d7576102ff565b806346ffdf951461055f5780634c5b7a29146105885780634d44660c146105b35780634e99522d146105f05780634f6ccce71461061b5780635147ef2014610658576102ff565b80632f745c59116102bc5780633ccfd60b116102965780633ccfd60b146104b957806342842e0e146104d057806342966c68146104f9578063438b630014610522576102ff565b80632f745c591461042657806332cb6b0c146104635780633c8da5881461048e576102ff565b806301ffc9a71461030457806306fdde0314610341578063081812fc1461036c578063095ea7b3146103a957806318160ddd146103d257806323b872dd146103fd575b600080fd5b34801561031057600080fd5b5061032b60048036038101906103269190613fd2565b610c3d565b60405161033891906148b1565b60405180910390f35b34801561034d57600080fd5b50610356610cb7565b60405161036391906148e7565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e91906140a2565b610d49565b6040516103a09190614828565b60405180910390f35b3480156103b557600080fd5b506103d060048036038101906103cb9190613f65565b610dce565b005b3480156103de57600080fd5b506103e7610ee6565b6040516103f49190614cc9565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f9190613def565b610ef3565b005b34801561043257600080fd5b5061044d60048036038101906104489190613f65565b610f53565b60405161045a9190614cc9565b60405180910390f35b34801561046f57600080fd5b50610478611098565b6040516104859190614cc9565b60405180910390f35b34801561049a57600080fd5b506104a361109e565b6040516104b09190614cc9565b60405180910390f35b3480156104c557600080fd5b506104ce6110a4565b005b3480156104dc57600080fd5b506104f760048036038101906104f29190613def565b61144a565b005b34801561050557600080fd5b50610520600480360381019061051b91906140a2565b61146a565b005b34801561052e57600080fd5b5061054960048036038101906105449190613c74565b6114c6565b604051610556919061488f565b60405180910390f35b34801561056b57600080fd5b5061058660048036038101906105819190613f65565b6115d0565b005b34801561059457600080fd5b5061059d6117db565b6040516105aa9190614cc9565b60405180910390f35b3480156105bf57600080fd5b506105da60048036038101906105d59190613ec5565b6117e1565b6040516105e791906148b1565b60405180910390f35b3480156105fc57600080fd5b506106056118a2565b6040516106129190614828565b60405180910390f35b34801561062757600080fd5b50610642600480360381019061063d91906140a2565b6118c8565b60405161064f9190614cc9565b60405180910390f35b34801561066457600080fd5b5061066d611919565b60405161067a9190614828565b60405180910390f35b34801561068f57600080fd5b5061069861193f565b6040516106a59190614cc9565b60405180910390f35b3480156106ba57600080fd5b506106d560048036038101906106d09190614059565b611944565b005b3480156106e357600080fd5b506106fe60048036038101906106f99190613d50565b6119da565b005b34801561070c57600080fd5b5061072760048036038101906107229190613c74565b611a26565b60405161073491906148b1565b60405180910390f35b34801561074957600080fd5b50610764600480360381019061075f91906140a2565b611a46565b6040516107719190614828565b60405180910390f35b34801561078657600080fd5b506107a1600480360381019061079c91906140a2565b611b03565b005b3480156107af57600080fd5b506107b8611b89565b6040516107c591906148e7565b60405180910390f35b3480156107da57600080fd5b506107f560048036038101906107f09190613c74565b611c17565b6040516108029190614cc9565b60405180910390f35b34801561081757600080fd5b50610820611d33565b005b34801561082e57600080fd5b50610849600480360381019061084491906140a2565b611dbb565b005b34801561085757600080fd5b50610860611e41565b60405161086d9190614828565b60405180910390f35b34801561088257600080fd5b5061088b611e6b565b60405161089891906148e7565b60405180910390f35b3480156108ad57600080fd5b506108c860048036038101906108c39190613c74565b611efd565b6040516108d59190614cc9565b60405180910390f35b3480156108ea57600080fd5b5061090560048036038101906109009190613f25565b611f15565b005b34801561091357600080fd5b5061091c612096565b60405161092991906148cc565b60405180910390f35b34801561093e57600080fd5b5061095960048036038101906109549190613e42565b61209c565b005b6109756004803603810190610970919061410f565b6120fe565b005b34801561098357600080fd5b5061099e60048036038101906109999190613fa5565b612487565b005b3480156109ac57600080fd5b506109b561250d565b6040516109c29190614cc9565b60405180910390f35b3480156109d757600080fd5b506109f260048036038101906109ed91906140cf565b612513565b005b348015610a0057600080fd5b50610a1b6004803603810190610a1691906140a2565b61268b565b604051610a2891906148e7565b60405180910390f35b348015610a3d57600080fd5b50610a46612707565b604051610a539190614828565b60405180910390f35b348015610a6857600080fd5b50610a836004803603810190610a7e9190613c74565b61272d565b005b348015610a9157600080fd5b50610aac6004803603810190610aa79190614059565b6127ed565b005b348015610aba57600080fd5b50610ad56004803603810190610ad09190613ca1565b612883565b604051610ae291906148b1565b60405180910390f35b348015610af757600080fd5b50610b006129d9565b604051610b0d9190614828565b60405180910390f35b348015610b2257600080fd5b50610b3d6004803603810190610b3891906140a2565b6129ff565b005b348015610b4b57600080fd5b50610b666004803603810190610b619190613c74565b612ad9565b005b348015610b7457600080fd5b50610b8f6004803603810190610b8a9190613ce1565b612bd1565b005b348015610b9d57600080fd5b50610ba6612c1b565b604051610bb39190614cc9565b60405180910390f35b348015610bc857600080fd5b50610bd1612c20565b604051610bde9190614cc9565b60405180910390f35b348015610bf357600080fd5b50610bfc612c26565b604051610c0991906148e7565b60405180910390f35b348015610c1e57600080fd5b50610c27612cb4565b604051610c349190614828565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610cb05750610caf82612cda565b5b9050919050565b606060008054610cc69061501a565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf29061501a565b8015610d3f5780601f10610d1457610100808354040283529160200191610d3f565b820191906000526020600020905b815481529060010190602001808311610d2257829003601f168201915b5050505050905090565b6000610d5482612dbc565b610d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8a90614b49565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610dd982611a46565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4190614c09565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e69612e44565b73ffffffffffffffffffffffffffffffffffffffff161480610e985750610e9781610e92612e44565b612883565b5b610ed7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ece90614a69565b60405180910390fd5b610ee18383612e4c565b505050565b6000600280549050905090565b610f04610efe612e44565b82612f05565b610f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3a90614c29565b60405180910390fd5b610f4e838383612fe3565b505050565b6000610f5e83611c17565b8210610f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9690614929565b60405180910390fd5b6000805b6002805490508110156110565760028181548110610fc457610fc36151a8565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156110435783821415611034578092505050611092565b818061103f9061507d565b9250505b808061104e9061507d565b915050610fa3565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108990614929565b60405180910390fd5b92915050565b61106881565b600f5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612710611964476110f09190614eba565b6110fa9190614e89565b60405161110690614813565b60006040518083038185875af1925050503d8060008114611143576040519150601f19603f3d011682016040523d82523d6000602084013e611148565b606091505b505090508061118c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118390614a49565b60405180910390fd5b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612710610465476111d89190614eba565b6111e29190614e89565b6040516111ee90614813565b60006040518083038185875af1925050503d806000811461122b576040519150601f19603f3d011682016040523d82523d6000602084013e611230565b606091505b5050905080611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b90614989565b60405180910390fd5b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612710610177476112c09190614eba565b6112ca9190614e89565b6040516112d690614813565b60006040518083038185875af1925050503d8060008114611313576040519150601f19603f3d011682016040523d82523d6000602084013e611318565b606091505b505090508061135c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135390614a09565b60405180910390fd5b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166127106107d0476113a89190614eba565b6113b29190614e89565b6040516113be90614813565b60006040518083038185875af1925050503d80600081146113fb576040519150601f19603f3d011682016040523d82523d6000602084013e611400565b606091505b5050905080611444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143b90614b09565b60405180910390fd5b50505050565b6114658383836040518060200160405280600081525061209c565b505050565b61147b611475612e44565b82612f05565b6114ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b190614be9565b60405180910390fd5b6114c38161319c565b50565b606060006114d383611c17565b9050600081141561153057600067ffffffffffffffff8111156114f9576114f86151d7565b5b6040519080825280602002602001820160405280156115275781602001602082028036833780820191505090505b509150506115cb565b60008167ffffffffffffffff81111561154c5761154b6151d7565b5b60405190808252806020026020018201604052801561157a5781602001602082028036833780820191505090505b50905060005b828110156115c4576115928582610f53565b8282815181106115a5576115a46151a8565b5b60200260200101818152505080806115bc9061507d565b915050611580565b5080925050505b919050565b6115d8612e44565b73ffffffffffffffffffffffffffffffffffffffff166115f6611e41565b73ffffffffffffffffffffffffffffffffffffffff161461164c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164390614b69565b60405180910390fd5b60008111801561165d575060048111155b61169c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169390614ae9565b60405180910390fd5b60018114156116eb5781600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506117d7565b600281141561173a5781600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506117d6565b60038114156117895781600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506117d5565b60048114156117d45781600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5b5b5b5050565b600e5481565b6000805b83839050811015611895578473ffffffffffffffffffffffffffffffffffffffff16600285858481811061181c5761181b6151a8565b5b9050602002013581548110611834576118336151a8565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461188457600091505061189b565b8061188e9061507d565b90506117e5565b50600190505b9392505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006002805490508210611911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190890614c89565b60405180910390fd5b819050919050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601481565b61194c612e44565b73ffffffffffffffffffffffffffffffffffffffff1661196a611e41565b73ffffffffffffffffffffffffffffffffffffffff16146119c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b790614b69565b60405180910390fd5b80600690805190602001906119d6929190613914565b5050565b60005b8251811015611a1f57611a0c85858584815181106119fe576119fd6151a8565b5b60200260200101518561209c565b8080611a179061507d565b9150506119dd565b5050505050565b60116020528060005260406000206000915054906101000a900460ff1681565b60008060028381548110611a5d57611a5c6151a8565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af190614aa9565b60405180910390fd5b80915050919050565b611b0b612e44565b73ffffffffffffffffffffffffffffffffffffffff16611b29611e41565b73ffffffffffffffffffffffffffffffffffffffff1614611b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7690614b69565b60405180910390fd5b8060108190555050565b60068054611b969061501a565b80601f0160208091040260200160405190810160405280929190818152602001828054611bc29061501a565b8015611c0f5780601f10611be457610100808354040283529160200191611c0f565b820191906000526020600020905b815481529060010190602001808311611bf257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7f90614a89565b60405180910390fd5b6000805b600280549050811015611d295760028181548110611cad57611cac6151a8565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d185781611d159061507d565b91505b80611d229061507d565b9050611c8c565b5080915050919050565b611d3b612e44565b73ffffffffffffffffffffffffffffffffffffffff16611d59611e41565b73ffffffffffffffffffffffffffffffffffffffff1614611daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da690614b69565b60405180910390fd5b611db9600061327e565b565b611dc3612e44565b73ffffffffffffffffffffffffffffffffffffffff16611de1611e41565b73ffffffffffffffffffffffffffffffffffffffff1614611e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2e90614b69565b60405180910390fd5b80600f8190555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611e7a9061501a565b80601f0160208091040260200160405190810160405280929190818152602001828054611ea69061501a565b8015611ef35780601f10611ec857610100808354040283529160200191611ef3565b820191906000526020600020905b815481529060010190602001808311611ed657829003601f168201915b5050505050905090565b60126020528060005260406000206000915090505481565b611f1d612e44565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f82906149e9565b60405180910390fd5b8060046000611f98612e44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612045612e44565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161208a91906148b1565b60405180910390a35050565b600c5481565b6120ad6120a7612e44565b83612f05565b6120ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e390614c29565b60405180910390fd5b6120f884848484613344565b50505050565b60003360405160200161211191906147c9565b6040516020818303038152906040528051906020012090506000600280549050905061106885826121429190614e33565b10612182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217990614909565b60405180910390fd5b6001600d541415612360576121db848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c54846133a0565b61221a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221190614bc9565b60405180910390fd5b60148560126000612229612e44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461226e9190614e33565b11156122af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a6906149a9565b60405180910390fd5b34601054866122be9190614eba565b146122fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f590614ac9565b60405180910390fd5b846012600061230b612e44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123549190614e33565b92505081905550612445565b6002600d54141561240257601485106123ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a590614c69565b60405180910390fd5b34600f54866123bd9190614eba565b146123fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f490614ac9565b60405180910390fd5b612444565b6000612443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243a90614b89565b60405180910390fd5b5b5b60005b8581101561247f5761246c61245b612e44565b82846124679190614e33565b6133b7565b80806124779061507d565b915050612448565b505050505050565b61248f612e44565b73ffffffffffffffffffffffffffffffffffffffff166124ad611e41565b73ffffffffffffffffffffffffffffffffffffffff1614612503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fa90614b69565b60405180910390fd5b80600c8190555050565b60105481565b61251b612e44565b73ffffffffffffffffffffffffffffffffffffffff16612539611e41565b73ffffffffffffffffffffffffffffffffffffffff161461258f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258690614b69565b60405180910390fd5b600082600e5461259f9190614f14565b10156125e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d790614c49565b60405180910390fd5b6000600280549050905061106883826125f99190614e33565b10612639576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263090614909565b60405180910390fd5b60005b8381101561266c576126598382846126549190614e33565b6133b7565b80806126649061507d565b91505061263c565b5082600e600082825461267f9190614f14565b92505081905550505050565b606061269682612dbc565b6126d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126cc90614b29565b60405180910390fd5b60066126e08361347a565b6040516020016126f19291906147e4565b6040516020818303038152906040529050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612735612e44565b73ffffffffffffffffffffffffffffffffffffffff16612753611e41565b73ffffffffffffffffffffffffffffffffffffffff16146127a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a090614b69565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6127f5612e44565b73ffffffffffffffffffffffffffffffffffffffff16612813611e41565b73ffffffffffffffffffffffffffffffffffffffff1614612869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286090614b69565b60405180910390fd5b806013908051906020019061287f929190613914565b5050565b600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016128fb9190614828565b60206040518083038186803b15801561291357600080fd5b505afa158015612927573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061294b919061402c565b73ffffffffffffffffffffffffffffffffffffffff1614806129b65750601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156129c55760019150506129d3565b6129cf84846135db565b9150505b92915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612a07612e44565b73ffffffffffffffffffffffffffffffffffffffff16612a25611e41565b73ffffffffffffffffffffffffffffffffffffffff1614612a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7290614b69565b60405180910390fd5b6004600d54108015612a9057506000600d5410155b612acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac690614ca9565b60405180910390fd5b80600d8190555050565b612ae1612e44565b73ffffffffffffffffffffffffffffffffffffffff16612aff611e41565b73ffffffffffffffffffffffffffffffffffffffff1614612b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4c90614b69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbc90614969565b60405180910390fd5b612bce8161327e565b50565b60005b8151811015612c1557612c028484848481518110612bf557612bf46151a8565b5b6020026020010151610ef3565b8080612c0d9061507d565b915050612bd4565b50505050565b601481565b600d5481565b60138054612c339061501a565b80601f0160208091040260200160405190810160405280929190818152602001828054612c5f9061501a565b8015612cac5780601f10612c8157610100808354040283529160200191612cac565b820191906000526020600020905b815481529060010190602001808311612c8f57829003601f168201915b505050505081565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612da557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612db55750612db48261366f565b5b9050919050565b600060028054905082108015612e3d5750600073ffffffffffffffffffffffffffffffffffffffff1660028381548110612df957612df86151a8565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612ebf83611a46565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612f1082612dbc565b612f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4690614a29565b60405180910390fd5b6000612f5a83611a46565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612fc957508373ffffffffffffffffffffffffffffffffffffffff16612fb184610d49565b73ffffffffffffffffffffffffffffffffffffffff16145b80612fda5750612fd98185612883565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661300382611a46565b73ffffffffffffffffffffffffffffffffffffffff1614613059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305090614ba9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c0906149c9565b60405180910390fd5b6130d48383836136d9565b6130df600082612e4c565b81600282815481106130f4576130f36151a8565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006131a782611a46565b90506131b5816000846136d9565b6131c0600083612e4c565b6000600283815481106131d6576131d56151a8565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61334f848484612fe3565b61335b848484846136de565b61339a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339190614949565b60405180910390fd5b50505050565b6000826133ad8584613875565b1490509392505050565b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b606060008214156134c2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506135d6565b600082905060005b600082146134f45780806134dd9061507d565b915050600a826134ed9190614e89565b91506134ca565b60008167ffffffffffffffff8111156135105761350f6151d7565b5b6040519080825280601f01601f1916602001820160405280156135425781602001600182028036833780820191505090505b5090505b600085146135cf5760018261355b9190614f14565b9150600a8561356a91906150ea565b60306135769190614e33565b60f81b81838151811061358c5761358b6151a8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856135c89190614e89565b9450613546565b8093505050505b919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b60006136ff8473ffffffffffffffffffffffffffffffffffffffff166138ea565b15613868578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613728612e44565b8786866040518563ffffffff1660e01b815260040161374a9493929190614843565b602060405180830381600087803b15801561376457600080fd5b505af192505050801561379557506040513d601f19601f820116820180604052508101906137929190613fff565b60015b613818573d80600081146137c5576040519150601f19603f3d011682016040523d82523d6000602084013e6137ca565b606091505b50600081511415613810576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161380790614949565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061386d565b600190505b949350505050565b60008082905060005b84518110156138df57600085828151811061389c5761389b6151a8565b5b602002602001015190508083116138be576138b783826138fd565b92506138cb565b6138c881846138fd565b92505b5080806138d79061507d565b91505061387e565b508091505092915050565b600080823b905060008111915050919050565b600082600052816020526040600020905092915050565b8280546139209061501a565b90600052602060002090601f0160209004810192826139425760008555613989565b82601f1061395b57805160ff1916838001178555613989565b82800160010185558215613989579182015b8281111561398857825182559160200191906001019061396d565b5b509050613996919061399a565b5090565b5b808211156139b357600081600090555060010161399b565b5090565b60006139ca6139c584614d09565b614ce4565b905080838252602082019050828560208602820111156139ed576139ec615210565b5b60005b85811015613a1d5781613a038882613c5f565b8452602084019350602083019250506001810190506139f0565b5050509392505050565b6000613a3a613a3584614d35565b614ce4565b905082815260208101848484011115613a5657613a55615215565b5b613a61848285614fd8565b509392505050565b6000613a7c613a7784614d66565b614ce4565b905082815260208101848484011115613a9857613a97615215565b5b613aa3848285614fd8565b509392505050565b600081359050613aba81615950565b92915050565b60008083601f840112613ad657613ad561520b565b5b8235905067ffffffffffffffff811115613af357613af2615206565b5b602083019150836020820283011115613b0f57613b0e615210565b5b9250929050565b60008083601f840112613b2c57613b2b61520b565b5b8235905067ffffffffffffffff811115613b4957613b48615206565b5b602083019150836020820283011115613b6557613b64615210565b5b9250929050565b600082601f830112613b8157613b8061520b565b5b8135613b918482602086016139b7565b91505092915050565b600081359050613ba981615967565b92915050565b600081359050613bbe8161597e565b92915050565b600081359050613bd381615995565b92915050565b600081519050613be881615995565b92915050565b600082601f830112613c0357613c0261520b565b5b8135613c13848260208601613a27565b91505092915050565b600081519050613c2b816159ac565b92915050565b600082601f830112613c4657613c4561520b565b5b8135613c56848260208601613a69565b91505092915050565b600081359050613c6e816159c3565b92915050565b600060208284031215613c8a57613c8961521f565b5b6000613c9884828501613aab565b91505092915050565b60008060408385031215613cb857613cb761521f565b5b6000613cc685828601613aab565b9250506020613cd785828601613aab565b9150509250929050565b600080600060608486031215613cfa57613cf961521f565b5b6000613d0886828701613aab565b9350506020613d1986828701613aab565b925050604084013567ffffffffffffffff811115613d3a57613d3961521a565b5b613d4686828701613b6c565b9150509250925092565b60008060008060808587031215613d6a57613d6961521f565b5b6000613d7887828801613aab565b9450506020613d8987828801613aab565b935050604085013567ffffffffffffffff811115613daa57613da961521a565b5b613db687828801613b6c565b925050606085013567ffffffffffffffff811115613dd757613dd661521a565b5b613de387828801613bee565b91505092959194509250565b600080600060608486031215613e0857613e0761521f565b5b6000613e1686828701613aab565b9350506020613e2786828701613aab565b9250506040613e3886828701613c5f565b9150509250925092565b60008060008060808587031215613e5c57613e5b61521f565b5b6000613e6a87828801613aab565b9450506020613e7b87828801613aab565b9350506040613e8c87828801613c5f565b925050606085013567ffffffffffffffff811115613ead57613eac61521a565b5b613eb987828801613bee565b91505092959194509250565b600080600060408486031215613ede57613edd61521f565b5b6000613eec86828701613aab565b935050602084013567ffffffffffffffff811115613f0d57613f0c61521a565b5b613f1986828701613b16565b92509250509250925092565b60008060408385031215613f3c57613f3b61521f565b5b6000613f4a85828601613aab565b9250506020613f5b85828601613b9a565b9150509250929050565b60008060408385031215613f7c57613f7b61521f565b5b6000613f8a85828601613aab565b9250506020613f9b85828601613c5f565b9150509250929050565b600060208284031215613fbb57613fba61521f565b5b6000613fc984828501613baf565b91505092915050565b600060208284031215613fe857613fe761521f565b5b6000613ff684828501613bc4565b91505092915050565b6000602082840312156140155761401461521f565b5b600061402384828501613bd9565b91505092915050565b6000602082840312156140425761404161521f565b5b600061405084828501613c1c565b91505092915050565b60006020828403121561406f5761406e61521f565b5b600082013567ffffffffffffffff81111561408d5761408c61521a565b5b61409984828501613c31565b91505092915050565b6000602082840312156140b8576140b761521f565b5b60006140c684828501613c5f565b91505092915050565b600080604083850312156140e6576140e561521f565b5b60006140f485828601613c5f565b925050602061410585828601613aab565b9150509250929050565b6000806000604084860312156141285761412761521f565b5b600061413686828701613c5f565b935050602084013567ffffffffffffffff8111156141575761415661521a565b5b61416386828701613ac0565b92509250509250925092565b600061417b83836147ab565b60208301905092915050565b61419081614f48565b82525050565b6141a76141a282614f48565b6150c6565b82525050565b60006141b882614dbc565b6141c28185614dea565b93506141cd83614d97565b8060005b838110156141fe5781516141e5888261416f565b97506141f083614ddd565b9250506001810190506141d1565b5085935050505092915050565b61421481614f5a565b82525050565b61422381614f66565b82525050565b600061423482614dc7565b61423e8185614dfb565b935061424e818560208601614fe7565b61425781615224565b840191505092915050565b600061426d82614dd2565b6142778185614e17565b9350614287818560208601614fe7565b61429081615224565b840191505092915050565b60006142a682614dd2565b6142b08185614e28565b93506142c0818560208601614fe7565b80840191505092915050565b600081546142d98161501a565b6142e38186614e28565b945060018216600081146142fe576001811461430f57614342565b60ff19831686528186019350614342565b61431885614da7565b60005b8381101561433a5781548189015260018201915060208101905061431b565b838801955050505b50505092915050565b6000614358601383614e17565b915061436382615242565b602082019050919050565b600061437b602b83614e17565b91506143868261526b565b604082019050919050565b600061439e603283614e17565b91506143a9826152ba565b604082019050919050565b60006143c1602683614e17565b91506143cc82615309565b604082019050919050565b60006143e4601983614e17565b91506143ef82615358565b602082019050919050565b6000614407601883614e17565b915061441282615381565b602082019050919050565b600061442a602483614e17565b9150614435826153aa565b604082019050919050565b600061444d601983614e17565b9150614458826153f9565b602082019050919050565b6000614470601983614e17565b915061447b82615422565b602082019050919050565b6000614493602c83614e17565b915061449e8261544b565b604082019050919050565b60006144b6601983614e17565b91506144c18261549a565b602082019050919050565b60006144d9603883614e17565b91506144e4826154c3565b604082019050919050565b60006144fc602a83614e17565b915061450782615512565b604082019050919050565b600061451f602983614e17565b915061452a82615561565b604082019050919050565b6000614542601783614e17565b915061454d826155b0565b602082019050919050565b6000614565600e83614e17565b9150614570826155d9565b602082019050919050565b6000614588601983614e17565b915061459382615602565b602082019050919050565b60006145ab601583614e17565b91506145b68261562b565b602082019050919050565b60006145ce602c83614e17565b91506145d982615654565b604082019050919050565b60006145f1600583614e28565b91506145fc826156a3565b600582019050919050565b6000614614602083614e17565b915061461f826156cc565b602082019050919050565b6000614637600e83614e17565b9150614642826156f5565b602082019050919050565b600061465a602983614e17565b91506146658261571e565b604082019050919050565b600061467d602483614e17565b91506146888261576d565b604082019050919050565b60006146a0601583614e17565b91506146ab826157bc565b602082019050919050565b60006146c3602183614e17565b91506146ce826157e5565b604082019050919050565b60006146e6600083614e0c565b91506146f182615834565b600082019050919050565b6000614709603183614e17565b915061471482615837565b604082019050919050565b600061472c601583614e17565b915061473782615886565b602082019050919050565b600061474f601c83614e17565b915061475a826158af565b602082019050919050565b6000614772602c83614e17565b915061477d826158d8565b604082019050919050565b6000614795600f83614e17565b91506147a082615927565b602082019050919050565b6147b481614fce565b82525050565b6147c381614fce565b82525050565b60006147d58284614196565b60148201915081905092915050565b60006147f082856142cc565b91506147fc828461429b565b9150614807826145e4565b91508190509392505050565b600061481e826146d9565b9150819050919050565b600060208201905061483d6000830184614187565b92915050565b60006080820190506148586000830187614187565b6148656020830186614187565b61487260408301856147ba565b81810360608301526148848184614229565b905095945050505050565b600060208201905081810360008301526148a981846141ad565b905092915050565b60006020820190506148c6600083018461420b565b92915050565b60006020820190506148e1600083018461421a565b92915050565b600060208201905081810360008301526149018184614262565b905092915050565b600060208201905081810360008301526149228161434b565b9050919050565b600060208201905081810360008301526149428161436e565b9050919050565b6000602082019050818103600083015261496281614391565b9050919050565b60006020820190508181036000830152614982816143b4565b9050919050565b600060208201905081810360008301526149a2816143d7565b9050919050565b600060208201905081810360008301526149c2816143fa565b9050919050565b600060208201905081810360008301526149e28161441d565b9050919050565b60006020820190508181036000830152614a0281614440565b9050919050565b60006020820190508181036000830152614a2281614463565b9050919050565b60006020820190508181036000830152614a4281614486565b9050919050565b60006020820190508181036000830152614a62816144a9565b9050919050565b60006020820190508181036000830152614a82816144cc565b9050919050565b60006020820190508181036000830152614aa2816144ef565b9050919050565b60006020820190508181036000830152614ac281614512565b9050919050565b60006020820190508181036000830152614ae281614535565b9050919050565b60006020820190508181036000830152614b0281614558565b9050919050565b60006020820190508181036000830152614b228161457b565b9050919050565b60006020820190508181036000830152614b428161459e565b9050919050565b60006020820190508181036000830152614b62816145c1565b9050919050565b60006020820190508181036000830152614b8281614607565b9050919050565b60006020820190508181036000830152614ba28161462a565b9050919050565b60006020820190508181036000830152614bc28161464d565b9050919050565b60006020820190508181036000830152614be281614670565b9050919050565b60006020820190508181036000830152614c0281614693565b9050919050565b60006020820190508181036000830152614c22816146b6565b9050919050565b60006020820190508181036000830152614c42816146fc565b9050919050565b60006020820190508181036000830152614c628161471f565b9050919050565b60006020820190508181036000830152614c8281614742565b9050919050565b60006020820190508181036000830152614ca281614765565b9050919050565b60006020820190508181036000830152614cc281614788565b9050919050565b6000602082019050614cde60008301846147ba565b92915050565b6000614cee614cff565b9050614cfa828261504c565b919050565b6000604051905090565b600067ffffffffffffffff821115614d2457614d236151d7565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614d5057614d4f6151d7565b5b614d5982615224565b9050602081019050919050565b600067ffffffffffffffff821115614d8157614d806151d7565b5b614d8a82615224565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614e3e82614fce565b9150614e4983614fce565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e7e57614e7d61511b565b5b828201905092915050565b6000614e9482614fce565b9150614e9f83614fce565b925082614eaf57614eae61514a565b5b828204905092915050565b6000614ec582614fce565b9150614ed083614fce565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614f0957614f0861511b565b5b828202905092915050565b6000614f1f82614fce565b9150614f2a83614fce565b925082821015614f3d57614f3c61511b565b5b828203905092915050565b6000614f5382614fae565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000614fa782614f48565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615005578082015181840152602081019050614fea565b83811115615014576000848401525b50505050565b6000600282049050600182168061503257607f821691505b6020821081141561504657615045615179565b5b50919050565b61505582615224565b810181811067ffffffffffffffff82111715615074576150736151d7565b5b80604052505050565b600061508882614fce565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156150bb576150ba61511b565b5b600182019050919050565b60006150d1826150d8565b9050919050565b60006150e382615235565b9050919050565b60006150f582614fce565b915061510083614fce565b9250826151105761510f61514a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45786365646573206d617820737570706c792e00000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4661696c656420746f2073656e6420746f207061796565322e00000000000000600082015250565b7f457863656564732077686974656c69737420737570706c790000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4661696c656420746f2073656e6420746f207061796565332e00000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4661696c656420746f2073656e6420746f207061796565312e00000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642066756e64732070726f76696465642e000000000000000000600082015250565b7f496e76616c696420696e6465782e000000000000000000000000000000000000600082015250565b7f4661696c656420746f2073656e6420746f207061796565342e00000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f53616c65206e6f74206f70656e2e000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4e6f74206f6e2077686974656c6973742e204d65726b6c652050726f6f66206660008201527f61696c2e00000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420617070726f76656420746f206275726e2e0000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f45786365656473206d61782067697665617761792e0000000000000000000000600082015250565b7f45786365656473206d617820706572207472616e73616374696f6e2e00000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f496e76616c6964207374617475732e0000000000000000000000000000000000600082015250565b61595981614f48565b811461596457600080fd5b50565b61597081614f5a565b811461597b57600080fd5b50565b61598781614f66565b811461599257600080fd5b50565b61599e81614f70565b81146159a957600080fd5b50565b6159b581614f9c565b81146159c057600080fd5b50565b6159cc81614fce565b81146159d757600080fd5b5056fea2646970667358221220691720fcd7c398f702e5e3d769ec69cd8d3c423c666264b42593638113ba59ac64736f6c63430008070033

Deployed Bytecode Sourcemap

144:6870:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;529:222:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2159:98:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2942:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2480:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;822:108:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3956:364:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1283:478:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;933:54:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1111:60;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4733:618;;;;;;;;;;;;;:::i;:::-;;4386:179:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4572:155:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5357:391;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2758:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;993:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6233:264;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;589:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1002:202:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;688:93:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1178:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1555:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5976:251;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1303:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1784:313:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2463:116:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;197:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1350:377:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1661:101:12;;;;;;;;;;;;;:::i;:::-;;2353:104:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1029:85:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2321:102:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1353:47:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3304:318:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;788:47:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4631:354:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3160:1023:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2168:179;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1236:60;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4189:377;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1776:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;292:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2018:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1657:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6503:352;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;490:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2585:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1911:198:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5754:216:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1053:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;842:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1407:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;391:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;529:222:5;631:4;669:35;654:50;;;:11;:50;;;;:90;;;;708:36;732:11;708:23;:36::i;:::-;654:90;647:97;;529:222;;;:::o;2159:98:4:-;2213:13;2245:5;2238:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2159:98;:::o;2942:295::-;3058:7;3102:16;3110:7;3102;:16::i;:::-;3081:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;3206:15;:24;3222:7;3206:24;;;;;;;;;;;;;;;;;;;;;3199:31;;2942:295;;;:::o;2480:401::-;2560:13;2576:23;2591:7;2576:14;:23::i;:::-;2560:39;;2623:5;2617:11;;:2;:11;;;;2609:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;2714:5;2698:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;2723:37;2740:5;2747:12;:10;:12::i;:::-;2723:16;:37::i;:::-;2698:62;2677:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;2853:21;2862:2;2866:7;2853:8;:21::i;:::-;2550:331;2480:401;;:::o;822:108:5:-;883:7;909;:14;;;;902:21;;822:108;:::o;3956:364:4:-;4158:41;4177:12;:10;:12::i;:::-;4191:7;4158:18;:41::i;:::-;4137:137;;;;;;;;;;;;:::i;:::-;;;;;;;;;4285:28;4295:4;4301:2;4305:7;4285:9;:28::i;:::-;3956:364;;;:::o;1283:478:5:-;1380:15;1423:16;1433:5;1423:9;:16::i;:::-;1415:5;:24;1407:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;1498:10;1522:6;1518:173;1534:7;:14;;;;1530:1;:18;1518:173;;;1580:7;1588:1;1580:10;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1571:19;;:5;:19;;;1568:113;;;1621:5;1612;:14;1609:57;;;1635:1;1628:8;;;;;;1609:57;1659:7;;;;;:::i;:::-;;;;1568:113;1550:3;;;;;:::i;:::-;;;;1518:173;;;;1701:53;;;;;;;;;;:::i;:::-;;;;;;;;1283:478;;;;;:::o;933:54:1:-;983:4;933:54;:::o;1111:60::-;;;;:::o;4733:618::-;4772:12;4791:6;;;;;;;;;;;:11;;4841:5;4834:4;4810:21;:28;;;;:::i;:::-;:36;;;;:::i;:::-;4791:60;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4771:80;;;4869:7;4861:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;4917:13;4936:6;;;;;;;;;;;:11;;4986:5;4979:4;4955:21;:28;;;;:::i;:::-;:36;;;;:::i;:::-;4936:60;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4916:80;;;5014:8;5006:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;5063:13;5082:6;;;;;;;;;;;:11;;5132:5;5126:3;5101:21;:28;;;;:::i;:::-;:36;;;;:::i;:::-;5082:60;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5062:80;;;5160:8;5152:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;5209:13;5228:6;;;;;;;;;;;:11;;5278:5;5271:4;5247:21;:28;;;;:::i;:::-;:36;;;;:::i;:::-;5228:60;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5208:80;;;5306:8;5298:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;4761:590;;;;4733:618::o;4386:179:4:-;4519:39;4536:4;4542:2;4546:7;4519:39;;;;;;;;;;;;:16;:39::i;:::-;4386:179;;;:::o;4572:155:1:-;4629:41;4648:12;:10;:12::i;:::-;4662:7;4629:18;:41::i;:::-;4621:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;4706:14;4712:7;4706:5;:14::i;:::-;4572:155;:::o;5357:391::-;5417:16;5445:18;5466:17;5476:6;5466:9;:17::i;:::-;5445:38;;5511:1;5497:10;:15;5493:44;;;5535:1;5521:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5514:23;;;;;5493:44;5548:25;5590:10;5576:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5548:53;;5616:9;5611:106;5631:10;5627:1;:14;5611:106;;;5676:30;5696:6;5704:1;5676:19;:30::i;:::-;5662:8;5671:1;5662:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;5643:3;;;;;:::i;:::-;;;;5611:106;;;;5733:8;5726:15;;;;5357:391;;;;:::o;2758:396::-;1252:12:12;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2857:1:1::1;2848:6;:10;:25;;;;;2872:1;2862:6;:11;;2848:25;2840:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;2916:1;2906:6;:11;2902:246;;;2942:6;2933;;:15;;;;;;;;;;;;;;;;;;2902:246;;;2979:1;2969:6;:11;2965:183;;;3005:6;2996;;:15;;;;;;;;;;;;;;;;;;2965:183;;;3042:1;3032:6;:11;3028:120;;;3068:6;3059;;:15;;;;;;;;;;;;;;;;;;3028:120;;;3105:1;3095:6;:11;3091:57;;;3131:6;3122;;:15;;;;;;;;;;;;;;;;;;3091:57;3028:120;2965:183;2902:246;2758:396:::0;;:::o;993:53::-;;;;:::o;6233:264::-;6322:4;6341:9;6337:132;6356:9;;:16;;6352:1;:20;6337:132;;;6421:7;6396:32;;:7;6404:9;;6414:1;6404:12;;;;;;;:::i;:::-;;;;;;;;6396:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:32;;;6393:65;;6453:5;6446:12;;;;;6393:65;6374:3;;;;:::i;:::-;;;6337:132;;;;6486:4;6479:11;;6233:264;;;;;;:::o;589:93::-;;;;;;;;;;;;;:::o;1002:202:5:-;1077:7;1112;:14;;;;1104:5;:22;1096:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;1192:5;1185:12;;1002:202;;;:::o;688:93:1:-;;;;;;;;;;;;;:::o;1178:52::-;1228:2;1178:52;:::o;1555:96::-;1252:12:12;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1636:8:1::1;1626:7;:18;;;;;;;;;;;;:::i;:::-;;1555:96:::0;:::o;5976:251::-;6105:9;6100:121;6124:9;:16;6120:1;:20;6100:121;;;6161:49;6178:5;6185:3;6190:9;6200:1;6190:12;;;;;;;;:::i;:::-;;;;;;;;6204:5;6161:16;:49::i;:::-;6142:3;;;;;:::i;:::-;;;;6100:121;;;;5976:251;;;;:::o;1303:44::-;;;;;;;;;;;;;;;;;;;;;;:::o;1784:313:4:-;1896:7;1919:13;1935:7;1943;1935:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1919:32;;1999:1;1982:19;;:5;:19;;;;1961:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;2085:5;2078:12;;;1784:313;;;:::o;2463:116:1:-;1252:12:12;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2558:14:1::1;2542:13;:30;;;;2463:116:::0;:::o;197:84::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1350:377:4:-;1467:4;1513:1;1496:19;;:5;:19;;;;1488:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;1573:10;1598:6;1593:106;1610:7;:14;;;;1606:1;:18;1593:106;;;1656:7;1664:1;1656:10;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1647:19;;:5;:19;;;1643:45;;;1681:7;;;;:::i;:::-;;;1643:45;1626:3;;;;:::i;:::-;;;1593:106;;;;1715:5;1708:12;;;1350:377;;;:::o;1661:101:12:-;1252:12;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;2353:104:1:-;1252:12:12;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2439:11:1::1;2426:10;:24;;;;2353:104:::0;:::o;1029:85:12:-;1075:7;1101:6;;;;;;;;;;;1094:13;;1029:85;:::o;2321:102:4:-;2377:13;2409:7;2402:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2321:102;:::o;1353:47:1:-;;;;;;;;;;;;;;;;;:::o;3304:318:4:-;3446:12;:10;:12::i;:::-;3434:24;;:8;:24;;;;3426:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;3544:8;3499:18;:32;3518:12;:10;:12::i;:::-;3499:32;;;;;;;;;;;;;;;:42;3532:8;3499:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;3596:8;3567:48;;3582:12;:10;:12::i;:::-;3567:48;;;3606:8;3567:48;;;;;;:::i;:::-;;;;;;;;3304:318;;:::o;788:47:1:-;;;;:::o;4631:354:4:-;4813:41;4832:12;:10;:12::i;:::-;4846:7;4813:18;:41::i;:::-;4792:137;;;;;;;;;;;;:::i;:::-;;;;;;;;;4939:39;4953:4;4959:2;4963:7;4972:5;4939:13;:39::i;:::-;4631:354;;;;:::o;3160:1023:1:-;3240:12;3282:10;3265:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;3255:39;;;;;;3240:54;;3304:19;3326:7;:14;;;;3304:36;;983:4;3372:5;3358:11;:19;;;;:::i;:::-;:32;3350:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;3442:1;3428:10;;:15;3424:645;;;3467:52;3486:5;;3467:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3493:19;;3514:4;3467:18;:52::i;:::-;3459:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;1228:2;3614:5;3582:15;:29;3598:12;:10;:12::i;:::-;3582:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:54;;3574:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;3713:9;3696:13;;3688:5;:21;;;;:::i;:::-;:34;3680:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;3797:5;3764:15;:29;3780:12;:10;:12::i;:::-;3764:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;3424:645;;;3838:1;3824:10;;:15;3820:249;;;1103:2;3863:5;:18;3855:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;3958:9;3944:10;;3936:5;:18;;;;:::i;:::-;:31;3928:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;3820:249;;;4034:5;4026:32;;;;;;;;;;;;:::i;:::-;;;;;;;;;3820:249;3424:645;4091:6;4087:90;4103:5;4099:1;:9;4087:90;;;4130:36;4136:12;:10;:12::i;:::-;4164:1;4150:11;:15;;;;:::i;:::-;4130:5;:36::i;:::-;4110:3;;;;;:::i;:::-;;;;4087:90;;;;3230:953;;3160:1023;;;:::o;2168:179::-;1252:12:12;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2320:20:1::1;2298:19;:42;;;;2168:179:::0;:::o;1236:60::-;;;;:::o;4189:377::-;1252:12:12;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4290:1:1::1;4282:4;4267:12;;:19;;;;:::i;:::-;:24;;4259:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;4327:19;4349:7;:14;;;;4327:36;;983:4;4395;4381:11;:18;;;;:::i;:::-;:31;4373:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4451:6;4446:84;4467:4;4463:1;:8;4446:84;;;4492:27;4498:3;4517:1;4503:11;:15;;;;:::i;:::-;4492:5;:27::i;:::-;4473:3;;;;;:::i;:::-;;;;4446:84;;;;4555:4;4539:12;;:20;;;;;;;:::i;:::-;;;;;;;;4249:317;4189:377:::0;;:::o;1776:236::-;1842:13;1875:17;1883:8;1875:7;:17::i;:::-;1867:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;1959:7;1968:26;1985:8;1968:16;:26::i;:::-;1942:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1928:77;;1776:236;;;:::o;292:93::-;;;;;;;;;;;;;:::o;2018:144::-;1252:12:12;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2134:21:1::1;2111:20;;:44;;;;;;;;;;;;;;;;;;2018:144:::0;:::o;1657:113::-;1252:12:12;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1758:5:1::1;1740:15;:23;;;;;;;;;;;;:::i;:::-;;1657:113:::0;:::o;6503:352::-;6593:4;6609:34;6667:20;;;;;;;;;;;6609:79;;6744:8;6702:50;;6710:13;:21;;;6732:6;6710:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6702:50;;;:76;;;;6756:12;:22;6769:8;6756:22;;;;;;;;;;;;;;;;;;;;;;;;;6702:76;6698:93;;;6787:4;6780:11;;;;;6698:93;6808:40;6831:6;6839:8;6808:22;:40::i;:::-;6801:47;;;6503:352;;;;;:::o;490:93::-;;;;;;;;;;;;;:::o;2585:167::-;1252:12:12;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2675:1:1::1;2662:10;;:14;:33;;;;;2694:1;2680:10;;:15;;2662:33;2654:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;2738:7;2725:10;:20;;;;2585:167:::0;:::o;1911:198:12:-;1252:12;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2019:1:::1;1999:22;;:8;:22;;;;1991:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2074:28;2093:8;2074:18;:28::i;:::-;1911:198:::0;:::o;5754:216:1:-;5859:9;5854:110;5878:9;:16;5874:1;:20;5854:110;;;5915:38;5928:5;5935:3;5940:9;5950:1;5940:12;;;;;;;;:::i;:::-;;;;;;;;5915;:38::i;:::-;5896:3;;;;;:::i;:::-;;;;5854:110;;;;5754:216;;;:::o;1053:52::-;1103:2;1053:52;:::o;842:51::-;;;;:::o;1407:43::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;391:93::-;;;;;;;;;;;;;:::o;947:344:4:-;1089:4;1143:25;1128:40;;;:11;:40;;;;:104;;;;1199:33;1184:48;;;:11;:48;;;;1128:104;:156;;;;1248:36;1272:11;1248:23;:36::i;:::-;1128:156;1109:175;;947:344;;;:::o;6491:153::-;6556:4;6589:7;:14;;;;6579:7;:24;:58;;;;;6635:1;6607:30;;:7;6615;6607:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:30;;;;6579:58;6572:65;;6491:153;;;:::o;640:96:2:-;693:7;719:10;712:17;;640:96;:::o;10379:171:4:-;10480:2;10453:15;:24;10469:7;10453:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;10535:7;10531:2;10497:46;;10506:23;10521:7;10506:14;:23::i;:::-;10497:46;;;;;;;;;;;;10379:171;;:::o;6802:438::-;6927:4;6968:16;6976:7;6968;:16::i;:::-;6947:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;7064:13;7080:23;7095:7;7080:14;:23::i;:::-;7064:39;;7132:5;7121:16;;:7;:16;;;:63;;;;7177:7;7153:31;;:20;7165:7;7153:11;:20::i;:::-;:31;;;7121:63;:111;;;;7200:32;7217:5;7224:7;7200:16;:32::i;:::-;7121:111;7113:120;;;6802:438;;;;:::o;9733:535::-;9900:4;9873:31;;:23;9888:7;9873:14;:23::i;:::-;:31;;;9852:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;10003:1;9989:16;;:2;:16;;;;9981:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10057:39;10078:4;10084:2;10088:7;10057:20;:39::i;:::-;10158:29;10175:1;10179:7;10158:8;:29::i;:::-;10216:2;10197:7;10205;10197:16;;;;;;;;:::i;:::-;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10253:7;10249:2;10234:27;;10243:4;10234:27;;;;;;;;;;;;9733:535;;;:::o;9087:322::-;9146:13;9162:23;9177:7;9162:14;:23::i;:::-;9146:39;;9196:48;9217:5;9232:1;9236:7;9196:20;:48::i;:::-;9282:29;9299:1;9303:7;9282:8;:29::i;:::-;9348:1;9321:7;9329;9321:16;;;;;;;;:::i;:::-;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;9394:7;9390:1;9366:36;;9375:5;9366:36;;;;;;;;;;;;9136:273;9087:322;:::o;2263:187:12:-;2336:16;2355:6;;;;;;;;;;;2336:25;;2380:8;2371:6;;:17;;;;;;;;;;;;;;;;;;2434:8;2403:40;;2424:8;2403:40;;;;;;;;;;;;2326:124;2263:187;:::o;5847:341:4:-;5998:28;6008:4;6014:2;6018:7;5998:9;:28::i;:::-;6057:48;6080:4;6086:2;6090:7;6099:5;6057:22;:48::i;:::-;6036:145;;;;;;;;;;;;:::i;:::-;;;;;;;;;5847:341;;;;:::o;847:184:11:-;968:4;1020;991:25;1004:5;1011:4;991:12;:25::i;:::-;:33;984:40;;847:184;;;;;:::o;6861:151:1:-;6941:7;6954:2;6941:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6997:7;6993:2;6972:33;;6989:1;6972:33;;;;;;;;;;;;6861:151;;:::o;328:703:13:-;384:13;610:1;601:5;:10;597:51;;;627:10;;;;;;;;;;;;;;;;;;;;;597:51;657:12;672:5;657:20;;687:14;711:75;726:1;718:4;:9;711:75;;743:8;;;;;:::i;:::-;;;;773:2;765:10;;;;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795:39;;844:150;860:1;851:5;:10;844:150;;887:1;877:11;;;;;:::i;:::-;;;953:2;945:5;:10;;;;:::i;:::-;932:2;:24;;;;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;844:150;;;1017:6;1003:21;;;;;328:703;;;;:::o;3688:206:4:-;3825:4;3852:18;:25;3871:5;3852:25;;;;;;;;;;;;;;;:35;3878:8;3852:35;;;;;;;;;;;;;;;;;;;;;;;;;3845:42;;3688:206;;;;:::o;829:155:3:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;12609:122:4:-;;;;:::o;11103:950::-;11253:4;11273:15;:2;:13;;;:15::i;:::-;11269:778;;;11340:2;11324:36;;;11382:12;:10;:12::i;:::-;11416:4;11442:7;11471:5;11324:170;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;11304:691;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11690:1;11673:6;:13;:18;11669:312;;;11715:106;;;;;;;;;;:::i;:::-;;;;;;;;11669:312;11933:6;11927:13;11918:6;11914:2;11910:15;11903:38;11304:691;11566:41;;;11556:51;;;:6;:51;;;;11549:58;;;;;11269:778;12032:4;12025:11;;11103:950;;;;;;;:::o;1383:662:11:-;1466:7;1485:20;1508:4;1485:27;;1527:9;1522:488;1546:5;:12;1542:1;:16;1522:488;;;1579:20;1602:5;1608:1;1602:8;;;;;;;;:::i;:::-;;;;;;;;1579:31;;1644:12;1628;:28;1624:376;;1769:42;1784:12;1798;1769:14;:42::i;:::-;1754:57;;1624:376;;;1943:42;1958:12;1972;1943:14;:42::i;:::-;1928:57;;1624:376;1565:445;1560:3;;;;;:::i;:::-;;;;1522:488;;;;2026:12;2019:19;;;1383:662;;;;:::o;771:377:0:-;831:4;1034:12;1099:7;1087:20;1079:28;;1140:1;1133:4;:8;1126:15;;;771:377;;;:::o;2051:218:11:-;2119:13;2180:1;2174:4;2167:15;2208:1;2202:4;2195:15;2248:4;2242;2232:21;2223:30;;2051:218;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:14:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:568::-;1821:8;1831:6;1881:3;1874:4;1866:6;1862:17;1858:27;1848:122;;1889:79;;:::i;:::-;1848:122;2002:6;1989:20;1979:30;;2032:18;2024:6;2021:30;2018:117;;;2054:79;;:::i;:::-;2018:117;2168:4;2160:6;2156:17;2144:29;;2222:3;2214:4;2206:6;2202:17;2192:8;2188:32;2185:41;2182:128;;;2229:79;;:::i;:::-;2182:128;1748:568;;;;;:::o;2339:::-;2412:8;2422:6;2472:3;2465:4;2457:6;2453:17;2449:27;2439:122;;2480:79;;:::i;:::-;2439:122;2593:6;2580:20;2570:30;;2623:18;2615:6;2612:30;2609:117;;;2645:79;;:::i;:::-;2609:117;2759:4;2751:6;2747:17;2735:29;;2813:3;2805:4;2797:6;2793:17;2783:8;2779:32;2776:41;2773:128;;;2820:79;;:::i;:::-;2773:128;2339:568;;;;;:::o;2930:370::-;3001:5;3050:3;3043:4;3035:6;3031:17;3027:27;3017:122;;3058:79;;:::i;:::-;3017:122;3175:6;3162:20;3200:94;3290:3;3282:6;3275:4;3267:6;3263:17;3200:94;:::i;:::-;3191:103;;3007:293;2930:370;;;;:::o;3306:133::-;3349:5;3387:6;3374:20;3365:29;;3403:30;3427:5;3403:30;:::i;:::-;3306:133;;;;:::o;3445:139::-;3491:5;3529:6;3516:20;3507:29;;3545:33;3572:5;3545:33;:::i;:::-;3445:139;;;;:::o;3590:137::-;3635:5;3673:6;3660:20;3651:29;;3689:32;3715:5;3689:32;:::i;:::-;3590:137;;;;:::o;3733:141::-;3789:5;3820:6;3814:13;3805:22;;3836:32;3862:5;3836:32;:::i;:::-;3733:141;;;;:::o;3893:338::-;3948:5;3997:3;3990:4;3982:6;3978:17;3974:27;3964:122;;4005:79;;:::i;:::-;3964:122;4122:6;4109:20;4147:78;4221:3;4213:6;4206:4;4198:6;4194:17;4147:78;:::i;:::-;4138:87;;3954:277;3893:338;;;;:::o;4237:201::-;4323:5;4354:6;4348:13;4339:22;;4370:62;4426:5;4370:62;:::i;:::-;4237:201;;;;:::o;4458:340::-;4514:5;4563:3;4556:4;4548:6;4544:17;4540:27;4530:122;;4571:79;;:::i;:::-;4530:122;4688:6;4675:20;4713:79;4788:3;4780:6;4773:4;4765:6;4761:17;4713:79;:::i;:::-;4704:88;;4520:278;4458:340;;;;:::o;4804:139::-;4850:5;4888:6;4875:20;4866:29;;4904:33;4931:5;4904:33;:::i;:::-;4804:139;;;;:::o;4949:329::-;5008:6;5057:2;5045:9;5036:7;5032:23;5028:32;5025:119;;;5063:79;;:::i;:::-;5025:119;5183:1;5208:53;5253:7;5244:6;5233:9;5229:22;5208:53;:::i;:::-;5198:63;;5154:117;4949:329;;;;:::o;5284:474::-;5352:6;5360;5409:2;5397:9;5388:7;5384:23;5380:32;5377:119;;;5415:79;;:::i;:::-;5377:119;5535:1;5560:53;5605:7;5596:6;5585:9;5581:22;5560:53;:::i;:::-;5550:63;;5506:117;5662:2;5688:53;5733:7;5724:6;5713:9;5709:22;5688:53;:::i;:::-;5678:63;;5633:118;5284:474;;;;;:::o;5764:829::-;5866:6;5874;5882;5931:2;5919:9;5910:7;5906:23;5902:32;5899:119;;;5937:79;;:::i;:::-;5899:119;6057:1;6082:53;6127:7;6118:6;6107:9;6103:22;6082:53;:::i;:::-;6072:63;;6028:117;6184:2;6210:53;6255:7;6246:6;6235:9;6231:22;6210:53;:::i;:::-;6200:63;;6155:118;6340:2;6329:9;6325:18;6312:32;6371:18;6363:6;6360:30;6357:117;;;6393:79;;:::i;:::-;6357:117;6498:78;6568:7;6559:6;6548:9;6544:22;6498:78;:::i;:::-;6488:88;;6283:303;5764:829;;;;;:::o;6599:1153::-;6719:6;6727;6735;6743;6792:3;6780:9;6771:7;6767:23;6763:33;6760:120;;;6799:79;;:::i;:::-;6760:120;6919:1;6944:53;6989:7;6980:6;6969:9;6965:22;6944:53;:::i;:::-;6934:63;;6890:117;7046:2;7072:53;7117:7;7108:6;7097:9;7093:22;7072:53;:::i;:::-;7062:63;;7017:118;7202:2;7191:9;7187:18;7174:32;7233:18;7225:6;7222:30;7219:117;;;7255:79;;:::i;:::-;7219:117;7360:78;7430:7;7421:6;7410:9;7406:22;7360:78;:::i;:::-;7350:88;;7145:303;7515:2;7504:9;7500:18;7487:32;7546:18;7538:6;7535:30;7532:117;;;7568:79;;:::i;:::-;7532:117;7673:62;7727:7;7718:6;7707:9;7703:22;7673:62;:::i;:::-;7663:72;;7458:287;6599:1153;;;;;;;:::o;7758:619::-;7835:6;7843;7851;7900:2;7888:9;7879:7;7875:23;7871:32;7868:119;;;7906:79;;:::i;:::-;7868:119;8026:1;8051:53;8096:7;8087:6;8076:9;8072:22;8051:53;:::i;:::-;8041:63;;7997:117;8153:2;8179:53;8224:7;8215:6;8204:9;8200:22;8179:53;:::i;:::-;8169:63;;8124:118;8281:2;8307:53;8352:7;8343:6;8332:9;8328:22;8307:53;:::i;:::-;8297:63;;8252:118;7758:619;;;;;:::o;8383:943::-;8478:6;8486;8494;8502;8551:3;8539:9;8530:7;8526:23;8522:33;8519:120;;;8558:79;;:::i;:::-;8519:120;8678:1;8703:53;8748:7;8739:6;8728:9;8724:22;8703:53;:::i;:::-;8693:63;;8649:117;8805:2;8831:53;8876:7;8867:6;8856:9;8852:22;8831:53;:::i;:::-;8821:63;;8776:118;8933:2;8959:53;9004:7;8995:6;8984:9;8980:22;8959:53;:::i;:::-;8949:63;;8904:118;9089:2;9078:9;9074:18;9061:32;9120:18;9112:6;9109:30;9106:117;;;9142:79;;:::i;:::-;9106:117;9247:62;9301:7;9292:6;9281:9;9277:22;9247:62;:::i;:::-;9237:72;;9032:287;8383:943;;;;;;;:::o;9332:704::-;9427:6;9435;9443;9492:2;9480:9;9471:7;9467:23;9463:32;9460:119;;;9498:79;;:::i;:::-;9460:119;9618:1;9643:53;9688:7;9679:6;9668:9;9664:22;9643:53;:::i;:::-;9633:63;;9589:117;9773:2;9762:9;9758:18;9745:32;9804:18;9796:6;9793:30;9790:117;;;9826:79;;:::i;:::-;9790:117;9939:80;10011:7;10002:6;9991:9;9987:22;9939:80;:::i;:::-;9921:98;;;;9716:313;9332:704;;;;;:::o;10042:468::-;10107:6;10115;10164:2;10152:9;10143:7;10139:23;10135:32;10132:119;;;10170:79;;:::i;:::-;10132:119;10290:1;10315:53;10360:7;10351:6;10340:9;10336:22;10315:53;:::i;:::-;10305:63;;10261:117;10417:2;10443:50;10485:7;10476:6;10465:9;10461:22;10443:50;:::i;:::-;10433:60;;10388:115;10042:468;;;;;:::o;10516:474::-;10584:6;10592;10641:2;10629:9;10620:7;10616:23;10612:32;10609:119;;;10647:79;;:::i;:::-;10609:119;10767:1;10792:53;10837:7;10828:6;10817:9;10813:22;10792:53;:::i;:::-;10782:63;;10738:117;10894:2;10920:53;10965:7;10956:6;10945:9;10941:22;10920:53;:::i;:::-;10910:63;;10865:118;10516:474;;;;;:::o;10996:329::-;11055:6;11104:2;11092:9;11083:7;11079:23;11075:32;11072:119;;;11110:79;;:::i;:::-;11072:119;11230:1;11255:53;11300:7;11291:6;11280:9;11276:22;11255:53;:::i;:::-;11245:63;;11201:117;10996:329;;;;:::o;11331:327::-;11389:6;11438:2;11426:9;11417:7;11413:23;11409:32;11406:119;;;11444:79;;:::i;:::-;11406:119;11564:1;11589:52;11633:7;11624:6;11613:9;11609:22;11589:52;:::i;:::-;11579:62;;11535:116;11331:327;;;;:::o;11664:349::-;11733:6;11782:2;11770:9;11761:7;11757:23;11753:32;11750:119;;;11788:79;;:::i;:::-;11750:119;11908:1;11933:63;11988:7;11979:6;11968:9;11964:22;11933:63;:::i;:::-;11923:73;;11879:127;11664:349;;;;:::o;12019:409::-;12118:6;12167:2;12155:9;12146:7;12142:23;12138:32;12135:119;;;12173:79;;:::i;:::-;12135:119;12293:1;12318:93;12403:7;12394:6;12383:9;12379:22;12318:93;:::i;:::-;12308:103;;12264:157;12019:409;;;;:::o;12434:509::-;12503:6;12552:2;12540:9;12531:7;12527:23;12523:32;12520:119;;;12558:79;;:::i;:::-;12520:119;12706:1;12695:9;12691:17;12678:31;12736:18;12728:6;12725:30;12722:117;;;12758:79;;:::i;:::-;12722:117;12863:63;12918:7;12909:6;12898:9;12894:22;12863:63;:::i;:::-;12853:73;;12649:287;12434:509;;;;:::o;12949:329::-;13008:6;13057:2;13045:9;13036:7;13032:23;13028:32;13025:119;;;13063:79;;:::i;:::-;13025:119;13183:1;13208:53;13253:7;13244:6;13233:9;13229:22;13208:53;:::i;:::-;13198:63;;13154:117;12949:329;;;;:::o;13284:474::-;13352:6;13360;13409:2;13397:9;13388:7;13384:23;13380:32;13377:119;;;13415:79;;:::i;:::-;13377:119;13535:1;13560:53;13605:7;13596:6;13585:9;13581:22;13560:53;:::i;:::-;13550:63;;13506:117;13662:2;13688:53;13733:7;13724:6;13713:9;13709:22;13688:53;:::i;:::-;13678:63;;13633:118;13284:474;;;;;:::o;13764:704::-;13859:6;13867;13875;13924:2;13912:9;13903:7;13899:23;13895:32;13892:119;;;13930:79;;:::i;:::-;13892:119;14050:1;14075:53;14120:7;14111:6;14100:9;14096:22;14075:53;:::i;:::-;14065:63;;14021:117;14205:2;14194:9;14190:18;14177:32;14236:18;14228:6;14225:30;14222:117;;;14258:79;;:::i;:::-;14222:117;14371:80;14443:7;14434:6;14423:9;14419:22;14371:80;:::i;:::-;14353:98;;;;14148:313;13764:704;;;;;:::o;14474:179::-;14543:10;14564:46;14606:3;14598:6;14564:46;:::i;:::-;14642:4;14637:3;14633:14;14619:28;;14474:179;;;;:::o;14659:118::-;14746:24;14764:5;14746:24;:::i;:::-;14741:3;14734:37;14659:118;;:::o;14783:157::-;14888:45;14908:24;14926:5;14908:24;:::i;:::-;14888:45;:::i;:::-;14883:3;14876:58;14783:157;;:::o;14976:732::-;15095:3;15124:54;15172:5;15124:54;:::i;:::-;15194:86;15273:6;15268:3;15194:86;:::i;:::-;15187:93;;15304:56;15354:5;15304:56;:::i;:::-;15383:7;15414:1;15399:284;15424:6;15421:1;15418:13;15399:284;;;15500:6;15494:13;15527:63;15586:3;15571:13;15527:63;:::i;:::-;15520:70;;15613:60;15666:6;15613:60;:::i;:::-;15603:70;;15459:224;15446:1;15443;15439:9;15434:14;;15399:284;;;15403:14;15699:3;15692:10;;15100:608;;;14976:732;;;;:::o;15714:109::-;15795:21;15810:5;15795:21;:::i;:::-;15790:3;15783:34;15714:109;;:::o;15829:118::-;15916:24;15934:5;15916:24;:::i;:::-;15911:3;15904:37;15829:118;;:::o;15953:360::-;16039:3;16067:38;16099:5;16067:38;:::i;:::-;16121:70;16184:6;16179:3;16121:70;:::i;:::-;16114:77;;16200:52;16245:6;16240:3;16233:4;16226:5;16222:16;16200:52;:::i;:::-;16277:29;16299:6;16277:29;:::i;:::-;16272:3;16268:39;16261:46;;16043:270;15953:360;;;;:::o;16319:364::-;16407:3;16435:39;16468:5;16435:39;:::i;:::-;16490:71;16554:6;16549:3;16490:71;:::i;:::-;16483:78;;16570:52;16615:6;16610:3;16603:4;16596:5;16592:16;16570:52;:::i;:::-;16647:29;16669:6;16647:29;:::i;:::-;16642:3;16638:39;16631:46;;16411:272;16319:364;;;;:::o;16689:377::-;16795:3;16823:39;16856:5;16823:39;:::i;:::-;16878:89;16960:6;16955:3;16878:89;:::i;:::-;16871:96;;16976:52;17021:6;17016:3;17009:4;17002:5;16998:16;16976:52;:::i;:::-;17053:6;17048:3;17044:16;17037:23;;16799:267;16689:377;;;;:::o;17096:845::-;17199:3;17236:5;17230:12;17265:36;17291:9;17265:36;:::i;:::-;17317:89;17399:6;17394:3;17317:89;:::i;:::-;17310:96;;17437:1;17426:9;17422:17;17453:1;17448:137;;;;17599:1;17594:341;;;;17415:520;;17448:137;17532:4;17528:9;17517;17513:25;17508:3;17501:38;17568:6;17563:3;17559:16;17552:23;;17448:137;;17594:341;17661:38;17693:5;17661:38;:::i;:::-;17721:1;17735:154;17749:6;17746:1;17743:13;17735:154;;;17823:7;17817:14;17813:1;17808:3;17804:11;17797:35;17873:1;17864:7;17860:15;17849:26;;17771:4;17768:1;17764:12;17759:17;;17735:154;;;17918:6;17913:3;17909:16;17902:23;;17601:334;;17415:520;;17203:738;;17096:845;;;;:::o;17947:366::-;18089:3;18110:67;18174:2;18169:3;18110:67;:::i;:::-;18103:74;;18186:93;18275:3;18186:93;:::i;:::-;18304:2;18299:3;18295:12;18288:19;;17947:366;;;:::o;18319:::-;18461:3;18482:67;18546:2;18541:3;18482:67;:::i;:::-;18475:74;;18558:93;18647:3;18558:93;:::i;:::-;18676:2;18671:3;18667:12;18660:19;;18319:366;;;:::o;18691:::-;18833:3;18854:67;18918:2;18913:3;18854:67;:::i;:::-;18847:74;;18930:93;19019:3;18930:93;:::i;:::-;19048:2;19043:3;19039:12;19032:19;;18691:366;;;:::o;19063:::-;19205:3;19226:67;19290:2;19285:3;19226:67;:::i;:::-;19219:74;;19302:93;19391:3;19302:93;:::i;:::-;19420:2;19415:3;19411:12;19404:19;;19063:366;;;:::o;19435:::-;19577:3;19598:67;19662:2;19657:3;19598:67;:::i;:::-;19591:74;;19674:93;19763:3;19674:93;:::i;:::-;19792:2;19787:3;19783:12;19776:19;;19435:366;;;:::o;19807:::-;19949:3;19970:67;20034:2;20029:3;19970:67;:::i;:::-;19963:74;;20046:93;20135:3;20046:93;:::i;:::-;20164:2;20159:3;20155:12;20148:19;;19807:366;;;:::o;20179:::-;20321:3;20342:67;20406:2;20401:3;20342:67;:::i;:::-;20335:74;;20418:93;20507:3;20418:93;:::i;:::-;20536:2;20531:3;20527:12;20520:19;;20179:366;;;:::o;20551:::-;20693:3;20714:67;20778:2;20773:3;20714:67;:::i;:::-;20707:74;;20790:93;20879:3;20790:93;:::i;:::-;20908:2;20903:3;20899:12;20892:19;;20551:366;;;:::o;20923:::-;21065:3;21086:67;21150:2;21145:3;21086:67;:::i;:::-;21079:74;;21162:93;21251:3;21162:93;:::i;:::-;21280:2;21275:3;21271:12;21264:19;;20923:366;;;:::o;21295:::-;21437:3;21458:67;21522:2;21517:3;21458:67;:::i;:::-;21451:74;;21534:93;21623:3;21534:93;:::i;:::-;21652:2;21647:3;21643:12;21636:19;;21295:366;;;:::o;21667:::-;21809:3;21830:67;21894:2;21889:3;21830:67;:::i;:::-;21823:74;;21906:93;21995:3;21906:93;:::i;:::-;22024:2;22019:3;22015:12;22008:19;;21667:366;;;:::o;22039:::-;22181:3;22202:67;22266:2;22261:3;22202:67;:::i;:::-;22195:74;;22278:93;22367:3;22278:93;:::i;:::-;22396:2;22391:3;22387:12;22380:19;;22039:366;;;:::o;22411:::-;22553:3;22574:67;22638:2;22633:3;22574:67;:::i;:::-;22567:74;;22650:93;22739:3;22650:93;:::i;:::-;22768:2;22763:3;22759:12;22752:19;;22411:366;;;:::o;22783:::-;22925:3;22946:67;23010:2;23005:3;22946:67;:::i;:::-;22939:74;;23022:93;23111:3;23022:93;:::i;:::-;23140:2;23135:3;23131:12;23124:19;;22783:366;;;:::o;23155:::-;23297:3;23318:67;23382:2;23377:3;23318:67;:::i;:::-;23311:74;;23394:93;23483:3;23394:93;:::i;:::-;23512:2;23507:3;23503:12;23496:19;;23155:366;;;:::o;23527:::-;23669:3;23690:67;23754:2;23749:3;23690:67;:::i;:::-;23683:74;;23766:93;23855:3;23766:93;:::i;:::-;23884:2;23879:3;23875:12;23868:19;;23527:366;;;:::o;23899:::-;24041:3;24062:67;24126:2;24121:3;24062:67;:::i;:::-;24055:74;;24138:93;24227:3;24138:93;:::i;:::-;24256:2;24251:3;24247:12;24240:19;;23899:366;;;:::o;24271:::-;24413:3;24434:67;24498:2;24493:3;24434:67;:::i;:::-;24427:74;;24510:93;24599:3;24510:93;:::i;:::-;24628:2;24623:3;24619:12;24612:19;;24271:366;;;:::o;24643:::-;24785:3;24806:67;24870:2;24865:3;24806:67;:::i;:::-;24799:74;;24882:93;24971:3;24882:93;:::i;:::-;25000:2;24995:3;24991:12;24984:19;;24643:366;;;:::o;25015:400::-;25175:3;25196:84;25278:1;25273:3;25196:84;:::i;:::-;25189:91;;25289:93;25378:3;25289:93;:::i;:::-;25407:1;25402:3;25398:11;25391:18;;25015:400;;;:::o;25421:366::-;25563:3;25584:67;25648:2;25643:3;25584:67;:::i;:::-;25577:74;;25660:93;25749:3;25660:93;:::i;:::-;25778:2;25773:3;25769:12;25762:19;;25421:366;;;:::o;25793:::-;25935:3;25956:67;26020:2;26015:3;25956:67;:::i;:::-;25949:74;;26032:93;26121:3;26032:93;:::i;:::-;26150:2;26145:3;26141:12;26134:19;;25793:366;;;:::o;26165:::-;26307:3;26328:67;26392:2;26387:3;26328:67;:::i;:::-;26321:74;;26404:93;26493:3;26404:93;:::i;:::-;26522:2;26517:3;26513:12;26506:19;;26165:366;;;:::o;26537:::-;26679:3;26700:67;26764:2;26759:3;26700:67;:::i;:::-;26693:74;;26776:93;26865:3;26776:93;:::i;:::-;26894:2;26889:3;26885:12;26878:19;;26537:366;;;:::o;26909:::-;27051:3;27072:67;27136:2;27131:3;27072:67;:::i;:::-;27065:74;;27148:93;27237:3;27148:93;:::i;:::-;27266:2;27261:3;27257:12;27250:19;;26909:366;;;:::o;27281:::-;27423:3;27444:67;27508:2;27503:3;27444:67;:::i;:::-;27437:74;;27520:93;27609:3;27520:93;:::i;:::-;27638:2;27633:3;27629:12;27622:19;;27281:366;;;:::o;27653:398::-;27812:3;27833:83;27914:1;27909:3;27833:83;:::i;:::-;27826:90;;27925:93;28014:3;27925:93;:::i;:::-;28043:1;28038:3;28034:11;28027:18;;27653:398;;;:::o;28057:366::-;28199:3;28220:67;28284:2;28279:3;28220:67;:::i;:::-;28213:74;;28296:93;28385:3;28296:93;:::i;:::-;28414:2;28409:3;28405:12;28398:19;;28057:366;;;:::o;28429:::-;28571:3;28592:67;28656:2;28651:3;28592:67;:::i;:::-;28585:74;;28668:93;28757:3;28668:93;:::i;:::-;28786:2;28781:3;28777:12;28770:19;;28429:366;;;:::o;28801:::-;28943:3;28964:67;29028:2;29023:3;28964:67;:::i;:::-;28957:74;;29040:93;29129:3;29040:93;:::i;:::-;29158:2;29153:3;29149:12;29142:19;;28801:366;;;:::o;29173:::-;29315:3;29336:67;29400:2;29395:3;29336:67;:::i;:::-;29329:74;;29412:93;29501:3;29412:93;:::i;:::-;29530:2;29525:3;29521:12;29514:19;;29173:366;;;:::o;29545:::-;29687:3;29708:67;29772:2;29767:3;29708:67;:::i;:::-;29701:74;;29784:93;29873:3;29784:93;:::i;:::-;29902:2;29897:3;29893:12;29886:19;;29545:366;;;:::o;29917:108::-;29994:24;30012:5;29994:24;:::i;:::-;29989:3;29982:37;29917:108;;:::o;30031:118::-;30118:24;30136:5;30118:24;:::i;:::-;30113:3;30106:37;30031:118;;:::o;30155:256::-;30267:3;30282:75;30353:3;30344:6;30282:75;:::i;:::-;30382:2;30377:3;30373:12;30366:19;;30402:3;30395:10;;30155:256;;;;:::o;30417:695::-;30695:3;30717:92;30805:3;30796:6;30717:92;:::i;:::-;30710:99;;30826:95;30917:3;30908:6;30826:95;:::i;:::-;30819:102;;30938:148;31082:3;30938:148;:::i;:::-;30931:155;;31103:3;31096:10;;30417:695;;;;;:::o;31118:379::-;31302:3;31324:147;31467:3;31324:147;:::i;:::-;31317:154;;31488:3;31481:10;;31118:379;;;:::o;31503:222::-;31596:4;31634:2;31623:9;31619:18;31611:26;;31647:71;31715:1;31704:9;31700:17;31691:6;31647:71;:::i;:::-;31503:222;;;;:::o;31731:640::-;31926:4;31964:3;31953:9;31949:19;31941:27;;31978:71;32046:1;32035:9;32031:17;32022:6;31978:71;:::i;:::-;32059:72;32127:2;32116:9;32112:18;32103:6;32059:72;:::i;:::-;32141;32209:2;32198:9;32194:18;32185:6;32141:72;:::i;:::-;32260:9;32254:4;32250:20;32245:2;32234:9;32230:18;32223:48;32288:76;32359:4;32350:6;32288:76;:::i;:::-;32280:84;;31731:640;;;;;;;:::o;32377:373::-;32520:4;32558:2;32547:9;32543:18;32535:26;;32607:9;32601:4;32597:20;32593:1;32582:9;32578:17;32571:47;32635:108;32738:4;32729:6;32635:108;:::i;:::-;32627:116;;32377:373;;;;:::o;32756:210::-;32843:4;32881:2;32870:9;32866:18;32858:26;;32894:65;32956:1;32945:9;32941:17;32932:6;32894:65;:::i;:::-;32756:210;;;;:::o;32972:222::-;33065:4;33103:2;33092:9;33088:18;33080:26;;33116:71;33184:1;33173:9;33169:17;33160:6;33116:71;:::i;:::-;32972:222;;;;:::o;33200:313::-;33313:4;33351:2;33340:9;33336:18;33328:26;;33400:9;33394:4;33390:20;33386:1;33375:9;33371:17;33364:47;33428:78;33501:4;33492:6;33428:78;:::i;:::-;33420:86;;33200:313;;;;:::o;33519:419::-;33685:4;33723:2;33712:9;33708:18;33700:26;;33772:9;33766:4;33762:20;33758:1;33747:9;33743:17;33736:47;33800:131;33926:4;33800:131;:::i;:::-;33792:139;;33519:419;;;:::o;33944:::-;34110:4;34148:2;34137:9;34133:18;34125:26;;34197:9;34191:4;34187:20;34183:1;34172:9;34168:17;34161:47;34225:131;34351:4;34225:131;:::i;:::-;34217:139;;33944:419;;;:::o;34369:::-;34535:4;34573:2;34562:9;34558:18;34550:26;;34622:9;34616:4;34612:20;34608:1;34597:9;34593:17;34586:47;34650:131;34776:4;34650:131;:::i;:::-;34642:139;;34369:419;;;:::o;34794:::-;34960:4;34998:2;34987:9;34983:18;34975:26;;35047:9;35041:4;35037:20;35033:1;35022:9;35018:17;35011:47;35075:131;35201:4;35075:131;:::i;:::-;35067:139;;34794:419;;;:::o;35219:::-;35385:4;35423:2;35412:9;35408:18;35400:26;;35472:9;35466:4;35462:20;35458:1;35447:9;35443:17;35436:47;35500:131;35626:4;35500:131;:::i;:::-;35492:139;;35219:419;;;:::o;35644:::-;35810:4;35848:2;35837:9;35833:18;35825:26;;35897:9;35891:4;35887:20;35883:1;35872:9;35868:17;35861:47;35925:131;36051:4;35925:131;:::i;:::-;35917:139;;35644:419;;;:::o;36069:::-;36235:4;36273:2;36262:9;36258:18;36250:26;;36322:9;36316:4;36312:20;36308:1;36297:9;36293:17;36286:47;36350:131;36476:4;36350:131;:::i;:::-;36342:139;;36069:419;;;:::o;36494:::-;36660:4;36698:2;36687:9;36683:18;36675:26;;36747:9;36741:4;36737:20;36733:1;36722:9;36718:17;36711:47;36775:131;36901:4;36775:131;:::i;:::-;36767:139;;36494:419;;;:::o;36919:::-;37085:4;37123:2;37112:9;37108:18;37100:26;;37172:9;37166:4;37162:20;37158:1;37147:9;37143:17;37136:47;37200:131;37326:4;37200:131;:::i;:::-;37192:139;;36919:419;;;:::o;37344:::-;37510:4;37548:2;37537:9;37533:18;37525:26;;37597:9;37591:4;37587:20;37583:1;37572:9;37568:17;37561:47;37625:131;37751:4;37625:131;:::i;:::-;37617:139;;37344:419;;;:::o;37769:::-;37935:4;37973:2;37962:9;37958:18;37950:26;;38022:9;38016:4;38012:20;38008:1;37997:9;37993:17;37986:47;38050:131;38176:4;38050:131;:::i;:::-;38042:139;;37769:419;;;:::o;38194:::-;38360:4;38398:2;38387:9;38383:18;38375:26;;38447:9;38441:4;38437:20;38433:1;38422:9;38418:17;38411:47;38475:131;38601:4;38475:131;:::i;:::-;38467:139;;38194:419;;;:::o;38619:::-;38785:4;38823:2;38812:9;38808:18;38800:26;;38872:9;38866:4;38862:20;38858:1;38847:9;38843:17;38836:47;38900:131;39026:4;38900:131;:::i;:::-;38892:139;;38619:419;;;:::o;39044:::-;39210:4;39248:2;39237:9;39233:18;39225:26;;39297:9;39291:4;39287:20;39283:1;39272:9;39268:17;39261:47;39325:131;39451:4;39325:131;:::i;:::-;39317:139;;39044:419;;;:::o;39469:::-;39635:4;39673:2;39662:9;39658:18;39650:26;;39722:9;39716:4;39712:20;39708:1;39697:9;39693:17;39686:47;39750:131;39876:4;39750:131;:::i;:::-;39742:139;;39469:419;;;:::o;39894:::-;40060:4;40098:2;40087:9;40083:18;40075:26;;40147:9;40141:4;40137:20;40133:1;40122:9;40118:17;40111:47;40175:131;40301:4;40175:131;:::i;:::-;40167:139;;39894:419;;;:::o;40319:::-;40485:4;40523:2;40512:9;40508:18;40500:26;;40572:9;40566:4;40562:20;40558:1;40547:9;40543:17;40536:47;40600:131;40726:4;40600:131;:::i;:::-;40592:139;;40319:419;;;:::o;40744:::-;40910:4;40948:2;40937:9;40933:18;40925:26;;40997:9;40991:4;40987:20;40983:1;40972:9;40968:17;40961:47;41025:131;41151:4;41025:131;:::i;:::-;41017:139;;40744:419;;;:::o;41169:::-;41335:4;41373:2;41362:9;41358:18;41350:26;;41422:9;41416:4;41412:20;41408:1;41397:9;41393:17;41386:47;41450:131;41576:4;41450:131;:::i;:::-;41442:139;;41169:419;;;:::o;41594:::-;41760:4;41798:2;41787:9;41783:18;41775:26;;41847:9;41841:4;41837:20;41833:1;41822:9;41818:17;41811:47;41875:131;42001:4;41875:131;:::i;:::-;41867:139;;41594:419;;;:::o;42019:::-;42185:4;42223:2;42212:9;42208:18;42200:26;;42272:9;42266:4;42262:20;42258:1;42247:9;42243:17;42236:47;42300:131;42426:4;42300:131;:::i;:::-;42292:139;;42019:419;;;:::o;42444:::-;42610:4;42648:2;42637:9;42633:18;42625:26;;42697:9;42691:4;42687:20;42683:1;42672:9;42668:17;42661:47;42725:131;42851:4;42725:131;:::i;:::-;42717:139;;42444:419;;;:::o;42869:::-;43035:4;43073:2;43062:9;43058:18;43050:26;;43122:9;43116:4;43112:20;43108:1;43097:9;43093:17;43086:47;43150:131;43276:4;43150:131;:::i;:::-;43142:139;;42869:419;;;:::o;43294:::-;43460:4;43498:2;43487:9;43483:18;43475:26;;43547:9;43541:4;43537:20;43533:1;43522:9;43518:17;43511:47;43575:131;43701:4;43575:131;:::i;:::-;43567:139;;43294:419;;;:::o;43719:::-;43885:4;43923:2;43912:9;43908:18;43900:26;;43972:9;43966:4;43962:20;43958:1;43947:9;43943:17;43936:47;44000:131;44126:4;44000:131;:::i;:::-;43992:139;;43719:419;;;:::o;44144:::-;44310:4;44348:2;44337:9;44333:18;44325:26;;44397:9;44391:4;44387:20;44383:1;44372:9;44368:17;44361:47;44425:131;44551:4;44425:131;:::i;:::-;44417:139;;44144:419;;;:::o;44569:::-;44735:4;44773:2;44762:9;44758:18;44750:26;;44822:9;44816:4;44812:20;44808:1;44797:9;44793:17;44786:47;44850:131;44976:4;44850:131;:::i;:::-;44842:139;;44569:419;;;:::o;44994:::-;45160:4;45198:2;45187:9;45183:18;45175:26;;45247:9;45241:4;45237:20;45233:1;45222:9;45218:17;45211:47;45275:131;45401:4;45275:131;:::i;:::-;45267:139;;44994:419;;;:::o;45419:::-;45585:4;45623:2;45612:9;45608:18;45600:26;;45672:9;45666:4;45662:20;45658:1;45647:9;45643:17;45636:47;45700:131;45826:4;45700:131;:::i;:::-;45692:139;;45419:419;;;:::o;45844:::-;46010:4;46048:2;46037:9;46033:18;46025:26;;46097:9;46091:4;46087:20;46083:1;46072:9;46068:17;46061:47;46125:131;46251:4;46125:131;:::i;:::-;46117:139;;45844:419;;;:::o;46269:222::-;46362:4;46400:2;46389:9;46385:18;46377:26;;46413:71;46481:1;46470:9;46466:17;46457:6;46413:71;:::i;:::-;46269:222;;;;:::o;46497:129::-;46531:6;46558:20;;:::i;:::-;46548:30;;46587:33;46615:4;46607:6;46587:33;:::i;:::-;46497:129;;;:::o;46632:75::-;46665:6;46698:2;46692:9;46682:19;;46632:75;:::o;46713:311::-;46790:4;46880:18;46872:6;46869:30;46866:56;;;46902:18;;:::i;:::-;46866:56;46952:4;46944:6;46940:17;46932:25;;47012:4;47006;47002:15;46994:23;;46713:311;;;:::o;47030:307::-;47091:4;47181:18;47173:6;47170:30;47167:56;;;47203:18;;:::i;:::-;47167:56;47241:29;47263:6;47241:29;:::i;:::-;47233:37;;47325:4;47319;47315:15;47307:23;;47030:307;;;:::o;47343:308::-;47405:4;47495:18;47487:6;47484:30;47481:56;;;47517:18;;:::i;:::-;47481:56;47555:29;47577:6;47555:29;:::i;:::-;47547:37;;47639:4;47633;47629:15;47621:23;;47343:308;;;:::o;47657:132::-;47724:4;47747:3;47739:11;;47777:4;47772:3;47768:14;47760:22;;47657:132;;;:::o;47795:141::-;47844:4;47867:3;47859:11;;47890:3;47887:1;47880:14;47924:4;47921:1;47911:18;47903:26;;47795:141;;;:::o;47942:114::-;48009:6;48043:5;48037:12;48027:22;;47942:114;;;:::o;48062:98::-;48113:6;48147:5;48141:12;48131:22;;48062:98;;;:::o;48166:99::-;48218:6;48252:5;48246:12;48236:22;;48166:99;;;:::o;48271:113::-;48341:4;48373;48368:3;48364:14;48356:22;;48271:113;;;:::o;48390:184::-;48489:11;48523:6;48518:3;48511:19;48563:4;48558:3;48554:14;48539:29;;48390:184;;;;:::o;48580:168::-;48663:11;48697:6;48692:3;48685:19;48737:4;48732:3;48728:14;48713:29;;48580:168;;;;:::o;48754:147::-;48855:11;48892:3;48877:18;;48754:147;;;;:::o;48907:169::-;48991:11;49025:6;49020:3;49013:19;49065:4;49060:3;49056:14;49041:29;;48907:169;;;;:::o;49082:148::-;49184:11;49221:3;49206:18;;49082:148;;;;:::o;49236:305::-;49276:3;49295:20;49313:1;49295:20;:::i;:::-;49290:25;;49329:20;49347:1;49329:20;:::i;:::-;49324:25;;49483:1;49415:66;49411:74;49408:1;49405:81;49402:107;;;49489:18;;:::i;:::-;49402:107;49533:1;49530;49526:9;49519:16;;49236:305;;;;:::o;49547:185::-;49587:1;49604:20;49622:1;49604:20;:::i;:::-;49599:25;;49638:20;49656:1;49638:20;:::i;:::-;49633:25;;49677:1;49667:35;;49682:18;;:::i;:::-;49667:35;49724:1;49721;49717:9;49712:14;;49547:185;;;;:::o;49738:348::-;49778:7;49801:20;49819:1;49801:20;:::i;:::-;49796:25;;49835:20;49853:1;49835:20;:::i;:::-;49830:25;;50023:1;49955:66;49951:74;49948:1;49945:81;49940:1;49933:9;49926:17;49922:105;49919:131;;;50030:18;;:::i;:::-;49919:131;50078:1;50075;50071:9;50060:20;;49738:348;;;;:::o;50092:191::-;50132:4;50152:20;50170:1;50152:20;:::i;:::-;50147:25;;50186:20;50204:1;50186:20;:::i;:::-;50181:25;;50225:1;50222;50219:8;50216:34;;;50230:18;;:::i;:::-;50216:34;50275:1;50272;50268:9;50260:17;;50092:191;;;;:::o;50289:96::-;50326:7;50355:24;50373:5;50355:24;:::i;:::-;50344:35;;50289:96;;;:::o;50391:90::-;50425:7;50468:5;50461:13;50454:21;50443:32;;50391:90;;;:::o;50487:77::-;50524:7;50553:5;50542:16;;50487:77;;;:::o;50570:149::-;50606:7;50646:66;50639:5;50635:78;50624:89;;50570:149;;;:::o;50725:125::-;50791:7;50820:24;50838:5;50820:24;:::i;:::-;50809:35;;50725:125;;;:::o;50856:126::-;50893:7;50933:42;50926:5;50922:54;50911:65;;50856:126;;;:::o;50988:77::-;51025:7;51054:5;51043:16;;50988:77;;;:::o;51071:154::-;51155:6;51150:3;51145;51132:30;51217:1;51208:6;51203:3;51199:16;51192:27;51071:154;;;:::o;51231:307::-;51299:1;51309:113;51323:6;51320:1;51317:13;51309:113;;;51408:1;51403:3;51399:11;51393:18;51389:1;51384:3;51380:11;51373:39;51345:2;51342:1;51338:10;51333:15;;51309:113;;;51440:6;51437:1;51434:13;51431:101;;;51520:1;51511:6;51506:3;51502:16;51495:27;51431:101;51280:258;51231:307;;;:::o;51544:320::-;51588:6;51625:1;51619:4;51615:12;51605:22;;51672:1;51666:4;51662:12;51693:18;51683:81;;51749:4;51741:6;51737:17;51727:27;;51683:81;51811:2;51803:6;51800:14;51780:18;51777:38;51774:84;;;51830:18;;:::i;:::-;51774:84;51595:269;51544:320;;;:::o;51870:281::-;51953:27;51975:4;51953:27;:::i;:::-;51945:6;51941:40;52083:6;52071:10;52068:22;52047:18;52035:10;52032:34;52029:62;52026:88;;;52094:18;;:::i;:::-;52026:88;52134:10;52130:2;52123:22;51913:238;51870:281;;:::o;52157:233::-;52196:3;52219:24;52237:5;52219:24;:::i;:::-;52210:33;;52265:66;52258:5;52255:77;52252:103;;;52335:18;;:::i;:::-;52252:103;52382:1;52375:5;52371:13;52364:20;;52157:233;;;:::o;52396:100::-;52435:7;52464:26;52484:5;52464:26;:::i;:::-;52453:37;;52396:100;;;:::o;52502:94::-;52541:7;52570:20;52584:5;52570:20;:::i;:::-;52559:31;;52502:94;;;:::o;52602:176::-;52634:1;52651:20;52669:1;52651:20;:::i;:::-;52646:25;;52685:20;52703:1;52685:20;:::i;:::-;52680:25;;52724:1;52714:35;;52729:18;;:::i;:::-;52714:35;52770:1;52767;52763:9;52758:14;;52602:176;;;;:::o;52784:180::-;52832:77;52829:1;52822:88;52929:4;52926:1;52919:15;52953:4;52950:1;52943:15;52970:180;53018:77;53015:1;53008:88;53115:4;53112:1;53105:15;53139:4;53136:1;53129:15;53156:180;53204:77;53201:1;53194:88;53301:4;53298:1;53291:15;53325:4;53322:1;53315:15;53342:180;53390:77;53387:1;53380:88;53487:4;53484:1;53477:15;53511:4;53508:1;53501:15;53528:180;53576:77;53573:1;53566:88;53673:4;53670:1;53663:15;53697:4;53694:1;53687:15;53714:117;53823:1;53820;53813:12;53837:117;53946:1;53943;53936:12;53960:117;54069:1;54066;54059:12;54083:117;54192:1;54189;54182:12;54206:117;54315:1;54312;54305:12;54329:117;54438:1;54435;54428:12;54452:102;54493:6;54544:2;54540:7;54535:2;54528:5;54524:14;54520:28;54510:38;;54452:102;;;:::o;54560:94::-;54593:8;54641:5;54637:2;54633:14;54612:35;;54560:94;;;:::o;54660:169::-;54800:21;54796:1;54788:6;54784:14;54777:45;54660:169;:::o;54835:230::-;54975:34;54971:1;54963:6;54959:14;54952:58;55044:13;55039:2;55031:6;55027:15;55020:38;54835:230;:::o;55071:237::-;55211:34;55207:1;55199:6;55195:14;55188:58;55280:20;55275:2;55267:6;55263:15;55256:45;55071:237;:::o;55314:225::-;55454:34;55450:1;55442:6;55438:14;55431:58;55523:8;55518:2;55510:6;55506:15;55499:33;55314:225;:::o;55545:175::-;55685:27;55681:1;55673:6;55669:14;55662:51;55545:175;:::o;55726:174::-;55866:26;55862:1;55854:6;55850:14;55843:50;55726:174;:::o;55906:223::-;56046:34;56042:1;56034:6;56030:14;56023:58;56115:6;56110:2;56102:6;56098:15;56091:31;55906:223;:::o;56135:175::-;56275:27;56271:1;56263:6;56259:14;56252:51;56135:175;:::o;56316:::-;56456:27;56452:1;56444:6;56440:14;56433:51;56316:175;:::o;56497:231::-;56637:34;56633:1;56625:6;56621:14;56614:58;56706:14;56701:2;56693:6;56689:15;56682:39;56497:231;:::o;56734:175::-;56874:27;56870:1;56862:6;56858:14;56851:51;56734:175;:::o;56915:243::-;57055:34;57051:1;57043:6;57039:14;57032:58;57124:26;57119:2;57111:6;57107:15;57100:51;56915:243;:::o;57164:229::-;57304:34;57300:1;57292:6;57288:14;57281:58;57373:12;57368:2;57360:6;57356:15;57349:37;57164:229;:::o;57399:228::-;57539:34;57535:1;57527:6;57523:14;57516:58;57608:11;57603:2;57595:6;57591:15;57584:36;57399:228;:::o;57633:173::-;57773:25;57769:1;57761:6;57757:14;57750:49;57633:173;:::o;57812:164::-;57952:16;57948:1;57940:6;57936:14;57929:40;57812:164;:::o;57982:175::-;58122:27;58118:1;58110:6;58106:14;58099:51;57982:175;:::o;58163:171::-;58303:23;58299:1;58291:6;58287:14;58280:47;58163:171;:::o;58340:231::-;58480:34;58476:1;58468:6;58464:14;58457:58;58549:14;58544:2;58536:6;58532:15;58525:39;58340:231;:::o;58577:155::-;58717:7;58713:1;58705:6;58701:14;58694:31;58577:155;:::o;58738:182::-;58878:34;58874:1;58866:6;58862:14;58855:58;58738:182;:::o;58926:164::-;59066:16;59062:1;59054:6;59050:14;59043:40;58926:164;:::o;59096:228::-;59236:34;59232:1;59224:6;59220:14;59213:58;59305:11;59300:2;59292:6;59288:15;59281:36;59096:228;:::o;59330:223::-;59470:34;59466:1;59458:6;59454:14;59447:58;59539:6;59534:2;59526:6;59522:15;59515:31;59330:223;:::o;59559:171::-;59699:23;59695:1;59687:6;59683:14;59676:47;59559:171;:::o;59736:220::-;59876:34;59872:1;59864:6;59860:14;59853:58;59945:3;59940:2;59932:6;59928:15;59921:28;59736:220;:::o;59962:114::-;;:::o;60082:236::-;60222:34;60218:1;60210:6;60206:14;60199:58;60291:19;60286:2;60278:6;60274:15;60267:44;60082:236;:::o;60324:171::-;60464:23;60460:1;60452:6;60448:14;60441:47;60324:171;:::o;60501:178::-;60641:30;60637:1;60629:6;60625:14;60618:54;60501:178;:::o;60685:231::-;60825:34;60821:1;60813:6;60809:14;60802:58;60894:14;60889:2;60881:6;60877:15;60870:39;60685:231;:::o;60922:165::-;61062:17;61058:1;61050:6;61046:14;61039:41;60922:165;:::o;61093:122::-;61166:24;61184:5;61166:24;:::i;:::-;61159:5;61156:35;61146:63;;61205:1;61202;61195:12;61146:63;61093:122;:::o;61221:116::-;61291:21;61306:5;61291:21;:::i;:::-;61284:5;61281:32;61271:60;;61327:1;61324;61317:12;61271:60;61221:116;:::o;61343:122::-;61416:24;61434:5;61416:24;:::i;:::-;61409:5;61406:35;61396:63;;61455:1;61452;61445:12;61396:63;61343:122;:::o;61471:120::-;61543:23;61560:5;61543:23;:::i;:::-;61536:5;61533:34;61523:62;;61581:1;61578;61571:12;61523:62;61471:120;:::o;61597:180::-;61699:53;61746:5;61699:53;:::i;:::-;61692:5;61689:64;61679:92;;61767:1;61764;61757:12;61679:92;61597:180;:::o;61783:122::-;61856:24;61874:5;61856:24;:::i;:::-;61849:5;61846:35;61836:63;;61895:1;61892;61885:12;61836:63;61783:122;:::o

Swarm Source

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