ETH Price: $3,311.76 (-2.93%)
Gas: 17 Gwei

Token

KuddlyKoalas (KKL)
 

Overview

Max Total Supply

8,888 KKL

Holders

1,705

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
takeshisan.eth
Balance
5 KKL
0x1609bc5fe461dd0a929ebc6574246a4aa78bbf86
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:
KuddlyKoalas

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 14 of 18: KuddlyKoalas.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "ERC721.sol";
import "ERC721Enumerable.sol";
import "ERC721Burnable.sol";
import "Ownable.sol";
import "SafeMath.sol";
import "Counters.sol";
import "ERC721Pausable.sol";

contract KuddlyKoalas is ERC721Enumerable, Ownable, ERC721Burnable, ERC721Pausable {
    using SafeMath for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdTracker;

    mapping(address => uint256) private whitelist;

    uint256 public MAX_ELEMENTS = 8888;
    uint256 public constant PRICE = 33 * 10**15;
    uint256 public constant MAX_BY_MINT = 20;
    address public constant creatorAddress = 0x893E23C01658bC1C112d6fdf10f34826c280A1B1;
    string public KUDDLY_PROVENANCE = "";
    string public baseTokenURI;
    bool public canChangeSupply = true;
    bool public presaleOpen = false;
    bool public mainSaleOpen = false;
    uint256 private presaleMaxPerMint = 3;

    // Reserve 300 Koalas for Giveaways/Prizes/Team/Influencers etc.
    uint public koalasReserve = 300;

    event CreateKoalas(uint256 indexed id);

    constructor(string memory baseURI) ERC721("KuddlyKoalas", "KKL") {
        setBaseURI(baseURI); // use original sketch as baseURI egg
        pause(true); // contract starts paused
    }
    modifier saleIsOpen {
        require(_totalSupply() <= MAX_ELEMENTS, "Sale end");
        if (_msgSender() != owner()) {
            require(!paused(), "Pausable: paused");
        }
        _;
    }

    function _totalSupply() internal view returns (uint) {
        return _tokenIdTracker.current();
    }

    function totalMint() public view returns (uint256) {
        return _totalSupply();
    }

    function mint(address _to, uint256 _count) public payable saleIsOpen {
        require(mainSaleOpen, "Public sale hasn't started!");
        uint256 total = _totalSupply();
        require(total + _count <= MAX_ELEMENTS, "Max limit");
        require(total <= MAX_ELEMENTS, "Sale end");
        require(_count <= MAX_BY_MINT, "Exceeds number");
        require(msg.value >= price(_count), "Value below price");

        for (uint256 i = 0; i < _count; i++) {
            _mintAnElement(_to);
        }
    }

    function mintPresale(address _to, uint256 _count) public payable {
        require(presaleOpen);
        require(_count <= whitelist[msg.sender]);
        uint256 total = _totalSupply();
        require(total + _count <= MAX_ELEMENTS, "Max limit");
        require(msg.value >= (_count * 33 * 10**15), "Value below price");

        for (uint256 i = 0; i < _count; i++) {
          _mintAnElement(_to);
        }

        whitelist[msg.sender] = whitelist[msg.sender] - _count;
    }

    function togglePresaleMint() public onlyOwner {
        presaleOpen = !presaleOpen;
    }

    function enableMainSale() public onlyOwner {
        mainSaleOpen = true;
    }

    function changePresaleMaxPerMint(uint256 _amount) public onlyOwner {
        presaleMaxPerMint = _amount;
    }

    function addToWhitelist(address[] memory _listToAdd) public onlyOwner {
        for (uint256 i = 0; i < 50; i++) {
          whitelist[_listToAdd[i]] = presaleMaxPerMint;
        }
    }

    function saleIsActive() public view returns (bool) {
        if(paused()) {
            return false;
        } else {
            return true;
        }
    }

    function isMainSaleOpen() public view returns (bool) {
        return mainSaleOpen;
    }

    function isPresaleOpen() public view returns (bool) {
        return presaleOpen;
    }

    function _mintAnElement(address _to) private {
        uint id = _totalSupply();
        _tokenIdTracker.increment();
        _safeMint(_to, id);
        emit CreateKoalas(id);
    }

    // This function allows an adaptive mint supply as defined in the Kuddly Koalas roadmap
    // There are NO other methods to increase the cap, the final cap is 8888 - this can never be altered

    function enableHardLimit(uint256 _limit) public onlyOwner {
        require(canChangeSupply);
        require(_limit <= 8888);
        MAX_ELEMENTS = _limit;
    }

    function relinquishMintSupplyControl() public onlyOwner {
        // Sets canChangeSupply to false (off)
        // This is a one-way switch
        // There is no other possible method to re-enable control of max Mint Supply
        require(canChangeSupply);
        canChangeSupply = false;
    }

    function price(uint256 _count) public pure returns (uint256) {
        return PRICE.mul(_count);
    }

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

    function getBaseURI() public view returns (string memory) {
        return baseTokenURI;
    }

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

    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        KUDDLY_PROVENANCE = provenanceHash;
    }

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

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

        return tokensId;
    }

    function pause(bool val) public onlyOwner {
        if (val == true) {
            _pause();
            return;
        }
        _unpause();
    }

    function withdrawAll() public payable onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0);
        _withdraw(creatorAddress, address(this).balance);
    }

    function withdrawSome(uint _amount) public payable onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > _amount);
        _withdraw(creatorAddress, _amount);
    }

    function withdrawAllBackup() public payable onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0);
        _withdrawBackup(creatorAddress, address(this).balance);
    }

    function withdrawSomeBackup(uint _amount) public payable onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > _amount);
        _withdrawBackup(creatorAddress, _amount);
    }

    function _withdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Transfer failed.");
    }

    function _withdrawBackup(address _address, uint256 _amount) private {
        payable(_address).transfer(_amount);
    }

    function KoalasReserve(address _to, uint256 _reserveAmount) public onlyOwner {        
        uint supply = totalSupply();
        require(_reserveAmount > 0 && _reserveAmount <= koalasReserve, "Not enough reserve left for team");
        for (uint i = 0; i < _reserveAmount; i++) {
            _mintAnElement(_to);

        }
        koalasReserve = koalasReserve.sub(_reserveAmount);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override(ERC721, ERC721Enumerable, ERC721Pausable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
    
}

File 1 of 18: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 2 of 18: Context.sol
// SPDX-License-Identifier: MIT

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 3 of 18: Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 4 of 18: ERC165.sol
// SPDX-License-Identifier: MIT

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 18: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 6 of 18: ERC721Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "ERC721.sol";
import "Context.sol";

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

File 7 of 18: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 18: ERC721Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "ERC721.sol";
import "Pausable.sol";
import "Ownable.sol";

/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Ownable, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);
        if (_msgSender() != owner()) {
            require(!paused(), "ERC721Pausable: token transfer while paused");
        }
    }
}

File 9 of 18: IERC165.sol
// SPDX-License-Identifier: MIT

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 10 of 18: IERC721.sol
// SPDX-License-Identifier: MIT

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 11 of 18: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

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 12 of 18: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

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 13 of 18: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 15 of 18: Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_msgSender());
    }

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

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

    /**
     * @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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

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

File 16 of 18: Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 17 of 18: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 18 of 18: Strings.sol
// SPDX-License-Identifier: MIT

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":[{"internalType":"string","name":"baseURI","type":"string"}],"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":"uint256","name":"id","type":"uint256"}],"name":"CreateKoalas","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"KUDDLY_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"KoalasReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"MAX_BY_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ELEMENTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_listToAdd","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"canChangeSupply","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"changePresaleMaxPerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"creatorAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"enableHardLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableMainSale","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":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"isMainSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"koalasReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mainSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintPresale","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":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"relinquishMintSupplyControl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePresaleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawAllBackup","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawSome","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawSomeBackup","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526122b8600d5560405180602001604052806000815250600e908051906020019062000031929190620005b6565b506001601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055506000601060026101000a81548160ff021916908315150217905550600360115561012c6012553480156200009b57600080fd5b506040516200641f3803806200641f8339818101604052810190620000c19190620006d8565b6040518060400160405280600c81526020017f4b7564646c794b6f616c617300000000000000000000000000000000000000008152506040518060400160405280600381526020017f4b4b4c0000000000000000000000000000000000000000000000000000000000815250816000908051906020019062000145929190620005b6565b5080600190805190602001906200015e929190620005b6565b5050506200018162000175620001c660201b60201c565b620001ce60201b60201c565b6000600a60146101000a81548160ff021916908315150217905550620001ad816200029460201b60201c565b620001bf60016200033f60201b60201c565b50620009ed565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002a4620001c660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002ca6200040660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000323576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200031a9062000855565b60405180910390fd5b80600f90805190602001906200033b929190620005b6565b5050565b6200034f620001c660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003756200040660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003ce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003c59062000855565b60405180910390fd5b600115158115151415620003f257620003ec6200043060201b60201c565b62000403565b62000402620004e860201b60201c565b5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620004406200059f60201b60201c565b1562000483576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200047a9062000833565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620004cf620001c660201b60201c565b604051620004de9190620007f4565b60405180910390a1565b620004f86200059f60201b60201c565b6200053a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005319062000811565b60405180910390fd5b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa62000586620001c660201b60201c565b604051620005959190620007f4565b60405180910390a1565b6000600a60149054906101000a900460ff16905090565b828054620005c49062000959565b90600052602060002090601f016020900481019282620005e8576000855562000634565b82601f106200060357805160ff191683800117855562000634565b8280016001018555821562000634579182015b828111156200063357825182559160200191906001019062000616565b5b50905062000643919062000647565b5090565b5b808211156200066257600081600090555060010162000648565b5090565b60006200067d6200067784620008ab565b62000877565b9050828152602081018484840111156200069657600080fd5b620006a384828562000923565b509392505050565b600082601f830112620006bd57600080fd5b8151620006cf84826020860162000666565b91505092915050565b600060208284031215620006eb57600080fd5b600082015167ffffffffffffffff8111156200070657600080fd5b6200071484828501620006ab565b91505092915050565b6200072881620008ef565b82525050565b60006200073d601483620008de565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b60006200077f601083620008de565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b6000620007c1602083620008de565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006020820190506200080b60008301846200071d565b92915050565b600060208201905081810360008301526200082c816200072e565b9050919050565b600060208201905081810360008301526200084e8162000770565b9050919050565b600060208201905081810360008301526200087081620007b2565b9050919050565b6000604051905081810181811067ffffffffffffffff82111715620008a157620008a0620009be565b5b8060405250919050565b600067ffffffffffffffff821115620008c957620008c8620009be565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b6000620008fc8262000903565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b838110156200094357808201518184015260208101905062000926565b8381111562000953576000848401525b50505050565b600060028204905060018216806200097257607f821691505b602082108114156200098957620009886200098f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b615a2280620009fd6000396000f3fe6080604052600436106103355760003560e01c8063715018a6116101ab578063b2404460116100f7578063e4f20fb211610095578063eb4f847b1161006f578063eb4f847b14610b80578063eb8d244414610bab578063ed4dcde614610bd6578063f2fde38b14610bed57610335565b8063e4f20fb214610afc578063e927fc5c14610b18578063e985e9c514610b4357610335565b8063c87b56dd116100d1578063c87b56dd14610a52578063ce03982a14610a8f578063d547cfb714610aa6578063dc11089914610ad157610335565b8063b2404460146109d5578063b88d4fde146109fe578063bee6348a14610a2757610335565b80638d859f3e1161016457806395d89b411161013e57806395d89b411461093a57806397c2834114610965578063a22cb46514610990578063ae9b051c146109b957610335565b80638d859f3e146108cd5780638da5cb5b146108f857806390d7a8301461092357610335565b8063715018a614610804578063720a8f251461081b5780637f6497831461084457806383cf83f31461086d578063853828b6146108985780638ad5de28146108a257610335565b806340c10f191161028557806355f804b3116102235780636352211e116101fd5780636352211e146107435780636e51ca4b1461078057806370a082311461079c578063714c5398146107d957610335565b806355f804b3146106c457806359a7715a146106ed5780635c975abb1461071857610335565b8063438b63001161025f578063438b6300146106155780634b39d02e146106525780634f6ccce71461067d5780635179dc23146106ba57610335565b806340c10f19146105a757806342842e0e146105c357806342966c68146105ec57610335565b8063095ea7b3116102f257806323b872dd116102cc57806323b872dd146104d957806326a49e37146105025780632f745c591461053f5780633502a7161461057c57610335565b8063095ea7b31461045c578063109695231461048557806318160ddd146104ae57610335565b806301ffc9a71461033a57806302329a291461037757806305bf0801146103a057806306fdde03146103cb5780630814f24d146103f6578063081812fc1461041f575b600080fd5b34801561034657600080fd5b50610361600480360381019061035c9190614483565b610c16565b60405161036e9190615110565b60405180910390f35b34801561038357600080fd5b5061039e6004803603810190610399919061445a565b610c28565b005b3480156103ac57600080fd5b506103b5610cca565b6040516103c29190615110565b60405180910390f35b3480156103d757600080fd5b506103e0610cdd565b6040516103ed919061512b565b60405180910390f35b34801561040257600080fd5b5061041d60048036038101906104189190614516565b610d6f565b005b34801561042b57600080fd5b5061044660048036038101906104419190614516565b610df5565b6040516104539190615087565b60405180910390f35b34801561046857600080fd5b50610483600480360381019061047e91906143dd565b610e7a565b005b34801561049157600080fd5b506104ac60048036038101906104a791906144d5565b610f92565b005b3480156104ba57600080fd5b506104c3611028565b6040516104d091906154ed565b60405180910390f35b3480156104e557600080fd5b5061050060048036038101906104fb91906142d7565b611035565b005b34801561050e57600080fd5b5061052960048036038101906105249190614516565b611095565b60405161053691906154ed565b60405180910390f35b34801561054b57600080fd5b50610566600480360381019061056191906143dd565b6110b8565b60405161057391906154ed565b60405180910390f35b34801561058857600080fd5b5061059161115d565b60405161059e91906154ed565b60405180910390f35b6105c160048036038101906105bc91906143dd565b611163565b005b3480156105cf57600080fd5b506105ea60048036038101906105e591906142d7565b6113e5565b005b3480156105f857600080fd5b50610613600480360381019061060e9190614516565b611405565b005b34801561062157600080fd5b5061063c60048036038101906106379190614272565b611461565b60405161064991906150ee565b60405180910390f35b34801561065e57600080fd5b5061066761155b565b604051610674919061512b565b60405180910390f35b34801561068957600080fd5b506106a4600480360381019061069f9190614516565b6115e9565b6040516106b191906154ed565b60405180910390f35b6106c2611680565b005b3480156106d057600080fd5b506106eb60048036038101906106e691906144d5565b61172f565b005b3480156106f957600080fd5b506107026117c5565b60405161070f91906154ed565b60405180910390f35b34801561072457600080fd5b5061072d6117d4565b60405161073a9190615110565b60405180910390f35b34801561074f57600080fd5b5061076a60048036038101906107659190614516565b6117eb565b6040516107779190615087565b60405180910390f35b61079a60048036038101906107959190614516565b61189d565b005b3480156107a857600080fd5b506107c360048036038101906107be9190614272565b61194c565b6040516107d091906154ed565b60405180910390f35b3480156107e557600080fd5b506107ee611a04565b6040516107fb919061512b565b60405180910390f35b34801561081057600080fd5b50610819611a96565b005b34801561082757600080fd5b50610842600480360381019061083d9190614516565b611b1e565b005b34801561085057600080fd5b5061086b60048036038101906108669190614419565b611bcc565b005b34801561087957600080fd5b50610882611cf1565b60405161088f9190615110565b60405180910390f35b6108a0611d04565b005b3480156108ae57600080fd5b506108b7611db3565b6040516108c491906154ed565b60405180910390f35b3480156108d957600080fd5b506108e2611db8565b6040516108ef91906154ed565b60405180910390f35b34801561090457600080fd5b5061090d611dc3565b60405161091a9190615087565b60405180910390f35b34801561092f57600080fd5b50610938611ded565b005b34801561094657600080fd5b5061094f611e86565b60405161095c919061512b565b60405180910390f35b34801561097157600080fd5b5061097a611f18565b60405161098791906154ed565b60405180910390f35b34801561099c57600080fd5b506109b760048036038101906109b291906143a1565b611f1e565b005b6109d360048036038101906109ce9190614516565b61209f565b005b3480156109e157600080fd5b506109fc60048036038101906109f791906143dd565b61214e565b005b348015610a0a57600080fd5b50610a256004803603810190610a209190614326565b61226f565b005b348015610a3357600080fd5b50610a3c6122d1565b604051610a499190615110565b60405180910390f35b348015610a5e57600080fd5b50610a796004803603810190610a749190614516565b6122e4565b604051610a86919061512b565b60405180910390f35b348015610a9b57600080fd5b50610aa461238b565b005b348015610ab257600080fd5b50610abb61243d565b604051610ac8919061512b565b60405180910390f35b348015610add57600080fd5b50610ae66124cb565b604051610af39190615110565b60405180910390f35b610b166004803603810190610b1191906143dd565b6124e2565b005b348015610b2457600080fd5b50610b2d6126bf565b604051610b3a9190615087565b60405180910390f35b348015610b4f57600080fd5b50610b6a6004803603810190610b65919061429b565b6126d7565b604051610b779190615110565b60405180910390f35b348015610b8c57600080fd5b50610b9561276b565b604051610ba29190615110565b60405180910390f35b348015610bb757600080fd5b50610bc0612782565b604051610bcd9190615110565b60405180910390f35b348015610be257600080fd5b50610beb6127a2565b005b348015610bf957600080fd5b50610c146004803603810190610c0f9190614272565b61284a565b005b6000610c2182612942565b9050919050565b610c306129bc565b73ffffffffffffffffffffffffffffffffffffffff16610c4e611dc3565b73ffffffffffffffffffffffffffffffffffffffff1614610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b906153cd565b60405180910390fd5b600115158115151415610cbe57610cb96129c4565b610cc7565b610cc6612a67565b5b50565b601060029054906101000a900460ff1681565b606060008054610cec90615817565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1890615817565b8015610d655780601f10610d3a57610100808354040283529160200191610d65565b820191906000526020600020905b815481529060010190602001808311610d4857829003601f168201915b5050505050905090565b610d776129bc565b73ffffffffffffffffffffffffffffffffffffffff16610d95611dc3565b73ffffffffffffffffffffffffffffffffffffffff1614610deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de2906153cd565b60405180910390fd5b8060118190555050565b6000610e0082612b09565b610e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e36906153ad565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e85826117eb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eed9061544d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f156129bc565b73ffffffffffffffffffffffffffffffffffffffff161480610f445750610f4381610f3e6129bc565b6126d7565b5b610f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7a9061530d565b60405180910390fd5b610f8d8383612b75565b505050565b610f9a6129bc565b73ffffffffffffffffffffffffffffffffffffffff16610fb8611dc3565b73ffffffffffffffffffffffffffffffffffffffff161461100e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611005906153cd565b60405180910390fd5b80600e9080519060200190611024929190614000565b5050565b6000600880549050905090565b6110466110406129bc565b82612c2e565b611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107c9061548d565b60405180910390fd5b611090838383612d0c565b505050565b60006110b18266753d533d968000612f6890919063ffffffff16565b9050919050565b60006110c38361194c565b8210611104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fb906151cd565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600d5481565b600d5461116e612f7e565b11156111af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a69061538d565b60405180910390fd5b6111b7611dc3565b73ffffffffffffffffffffffffffffffffffffffff166111d56129bc565b73ffffffffffffffffffffffffffffffffffffffff1614611239576111f86117d4565b15611238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122f906152ed565b60405180910390fd5b5b601060029054906101000a900460ff16611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f906151ad565b60405180910390fd5b6000611292612f7e565b9050600d5482826112a3919061564c565b11156112e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112db906152ad565b60405180910390fd5b600d54811115611329576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113209061538d565b60405180910390fd5b601482111561136d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113649061518d565b60405180910390fd5b61137682611095565b3410156113b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113af9061542d565b60405180910390fd5b60005b828110156113df576113cc84612f8f565b80806113d790615849565b9150506113bb565b50505050565b6114008383836040518060200160405280600081525061226f565b505050565b6114166114106129bc565b82612c2e565b611455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144c906154cd565b60405180910390fd5b61145e81612fe0565b50565b6060600061146e8361194c565b905060008167ffffffffffffffff8111156114b2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156114e05781602001602082028036833780820191505090505b50905060005b82811015611550576114f885826110b8565b828281518110611531577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061154890615849565b9150506114e6565b508092505050919050565b600e805461156890615817565b80601f016020809104026020016040519081016040528092919081815260200182805461159490615817565b80156115e15780601f106115b6576101008083540402835291602001916115e1565b820191906000526020600020905b8154815290600101906020018083116115c457829003601f168201915b505050505081565b60006115f3611028565b8210611634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162b906154ad565b60405180910390fd5b6008828154811061166e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6116886129bc565b73ffffffffffffffffffffffffffffffffffffffff166116a6611dc3565b73ffffffffffffffffffffffffffffffffffffffff16146116fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f3906153cd565b60405180910390fd5b60004790506000811161170e57600080fd5b61172c73893e23c01658bc1c112d6fdf10f34826c280a1b1476130f1565b50565b6117376129bc565b73ffffffffffffffffffffffffffffffffffffffff16611755611dc3565b73ffffffffffffffffffffffffffffffffffffffff16146117ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a2906153cd565b60405180910390fd5b80600f90805190602001906117c1929190614000565b5050565b60006117cf612f7e565b905090565b6000600a60149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b9061534d565b60405180910390fd5b80915050919050565b6118a56129bc565b73ffffffffffffffffffffffffffffffffffffffff166118c3611dc3565b73ffffffffffffffffffffffffffffffffffffffff1614611919576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611910906153cd565b60405180910390fd5b600047905081811161192a57600080fd5b61194873893e23c01658bc1c112d6fdf10f34826c280a1b1836130f1565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b49061532d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600f8054611a1390615817565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3f90615817565b8015611a8c5780601f10611a6157610100808354040283529160200191611a8c565b820191906000526020600020905b815481529060010190602001808311611a6f57829003601f168201915b5050505050905090565b611a9e6129bc565b73ffffffffffffffffffffffffffffffffffffffff16611abc611dc3565b73ffffffffffffffffffffffffffffffffffffffff1614611b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b09906153cd565b60405180910390fd5b611b1c600061313c565b565b611b266129bc565b73ffffffffffffffffffffffffffffffffffffffff16611b44611dc3565b73ffffffffffffffffffffffffffffffffffffffff1614611b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b91906153cd565b60405180910390fd5b601060009054906101000a900460ff16611bb357600080fd5b6122b8811115611bc257600080fd5b80600d8190555050565b611bd46129bc565b73ffffffffffffffffffffffffffffffffffffffff16611bf2611dc3565b73ffffffffffffffffffffffffffffffffffffffff1614611c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3f906153cd565b60405180910390fd5b60005b6032811015611ced57601154600c6000848481518110611c94577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611ce590615849565b915050611c4b565b5050565b601060009054906101000a900460ff1681565b611d0c6129bc565b73ffffffffffffffffffffffffffffffffffffffff16611d2a611dc3565b73ffffffffffffffffffffffffffffffffffffffff1614611d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d77906153cd565b60405180910390fd5b600047905060008111611d9257600080fd5b611db073893e23c01658bc1c112d6fdf10f34826c280a1b147613202565b50565b601481565b66753d533d96800081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611df56129bc565b73ffffffffffffffffffffffffffffffffffffffff16611e13611dc3565b73ffffffffffffffffffffffffffffffffffffffff1614611e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e60906153cd565b60405180910390fd5b6001601060026101000a81548160ff021916908315150217905550565b606060018054611e9590615817565b80601f0160208091040260200160405190810160405280929190818152602001828054611ec190615817565b8015611f0e5780601f10611ee357610100808354040283529160200191611f0e565b820191906000526020600020905b815481529060010190602001808311611ef157829003601f168201915b5050505050905090565b60125481565b611f266129bc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8b9061528d565b60405180910390fd5b8060056000611fa16129bc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661204e6129bc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120939190615110565b60405180910390a35050565b6120a76129bc565b73ffffffffffffffffffffffffffffffffffffffff166120c5611dc3565b73ffffffffffffffffffffffffffffffffffffffff161461211b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612112906153cd565b60405180910390fd5b600047905081811161212c57600080fd5b61214a73893e23c01658bc1c112d6fdf10f34826c280a1b183613202565b5050565b6121566129bc565b73ffffffffffffffffffffffffffffffffffffffff16612174611dc3565b73ffffffffffffffffffffffffffffffffffffffff16146121ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c1906153cd565b60405180910390fd5b60006121d4611028565b90506000821180156121e857506012548211155b612227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221e9061524d565b60405180910390fd5b60005b8281101561224e5761223b84612f8f565b808061224690615849565b91505061222a565b50612264826012546132b390919063ffffffff16565b601281905550505050565b61228061227a6129bc565b83612c2e565b6122bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b69061548d565b60405180910390fd5b6122cb848484846132c9565b50505050565b601060019054906101000a900460ff1681565b60606122ef82612b09565b61232e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123259061540d565b60405180910390fd5b6000612338613325565b905060008151116123585760405180602001604052806000815250612383565b80612362846133b7565b60405160200161237392919061504e565b6040516020818303038152906040525b915050919050565b6123936129bc565b73ffffffffffffffffffffffffffffffffffffffff166123b1611dc3565b73ffffffffffffffffffffffffffffffffffffffff1614612407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fe906153cd565b60405180910390fd5b601060009054906101000a900460ff1661242057600080fd5b6000601060006101000a81548160ff021916908315150217905550565b600f805461244a90615817565b80601f016020809104026020016040519081016040528092919081815260200182805461247690615817565b80156124c35780601f10612498576101008083540402835291602001916124c3565b820191906000526020600020905b8154815290600101906020018083116124a657829003601f168201915b505050505081565b6000601060029054906101000a900460ff16905090565b601060019054906101000a900460ff166124fb57600080fd5b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481111561254757600080fd5b6000612551612f7e565b9050600d548282612562919061564c565b11156125a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259a906152ad565b60405180910390fd5b66038d7ea4c680006021836125b891906156d3565b6125c291906156d3565b341015612604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fb9061542d565b60405180910390fd5b60005b8281101561262b5761261884612f8f565b808061262390615849565b915050612607565b5081600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612677919061572d565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b73893e23c01658bc1c112d6fdf10f34826c280a1b181565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000601060019054906101000a900460ff16905090565b600061278c6117d4565b1561279a576000905061279f565b600190505b90565b6127aa6129bc565b73ffffffffffffffffffffffffffffffffffffffff166127c8611dc3565b73ffffffffffffffffffffffffffffffffffffffff161461281e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612815906153cd565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b6128526129bc565b73ffffffffffffffffffffffffffffffffffffffff16612870611dc3565b73ffffffffffffffffffffffffffffffffffffffff16146128c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bd906153cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292d9061520d565b60405180910390fd5b61293f8161313c565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806129b557506129b482613564565b5b9050919050565b600033905090565b6129cc6117d4565b15612a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a03906152ed565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612a506129bc565b604051612a5d9190615087565b60405180910390a1565b612a6f6117d4565b612aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa59061516d565b60405180910390fd5b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612af26129bc565b604051612aff9190615087565b60405180910390a1565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612be8836117eb565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612c3982612b09565b612c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6f906152cd565b60405180910390fd5b6000612c83836117eb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612cf257508373ffffffffffffffffffffffffffffffffffffffff16612cda84610df5565b73ffffffffffffffffffffffffffffffffffffffff16145b80612d035750612d0281856126d7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612d2c826117eb565b73ffffffffffffffffffffffffffffffffffffffff1614612d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d79906153ed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de99061526d565b60405180910390fd5b612dfd838383613646565b612e08600082612b75565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e58919061572d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612eaf919061564c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008183612f7691906156d3565b905092915050565b6000612f8a600b613656565b905090565b6000612f99612f7e565b9050612fa5600b613664565b612faf828261367a565b807f86f740003797f6ed61a3eadecd8efb70132beda461c28b0bc74e5fdea2567a0560405160405180910390a25050565b6000612feb826117eb565b9050612ff981600084613646565b613004600083612b75565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613054919061572d565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015613137573d6000803e3d6000fd5b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161322890615072565b60006040518083038185875af1925050503d8060008114613265576040519150601f19603f3d011682016040523d82523d6000602084013e61326a565b606091505b50509050806132ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132a59061546d565b60405180910390fd5b505050565b600081836132c1919061572d565b905092915050565b6132d4848484612d0c565b6132e084848484613698565b61331f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613316906151ed565b60405180910390fd5b50505050565b6060600f805461333490615817565b80601f016020809104026020016040519081016040528092919081815260200182805461336090615817565b80156133ad5780601f10613382576101008083540402835291602001916133ad565b820191906000526020600020905b81548152906001019060200180831161339057829003601f168201915b5050505050905090565b606060008214156133ff576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061355f565b600082905060005b6000821461343157808061341a90615849565b915050600a8261342a91906156a2565b9150613407565b60008167ffffffffffffffff811115613473577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156134a55781602001600182028036833780820191505090505b5090505b60008514613558576001826134be919061572d565b9150600a856134cd9190615892565b60306134d9919061564c565b60f81b818381518110613515577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561355191906156a2565b94506134a9565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061362f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061363f575061363e8261382f565b5b9050919050565b613651838383613899565b505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b613694828260405180602001604052806000815250613933565b5050565b60006136b98473ffffffffffffffffffffffffffffffffffffffff1661398e565b15613822578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026136e26129bc565b8786866040518563ffffffff1660e01b815260040161370494939291906150a2565b602060405180830381600087803b15801561371e57600080fd5b505af192505050801561374f57506040513d601f19601f8201168201806040525081019061374c91906144ac565b60015b6137d2573d806000811461377f576040519150601f19603f3d011682016040523d82523d6000602084013e613784565b606091505b506000815114156137ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137c1906151ed565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613827565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6138a48383836139a1565b6138ac611dc3565b73ffffffffffffffffffffffffffffffffffffffff166138ca6129bc565b73ffffffffffffffffffffffffffffffffffffffff161461392e576138ed6117d4565b1561392d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139249061514d565b60405180910390fd5b5b505050565b61393d8383613ab5565b61394a6000848484613698565b613989576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613980906151ed565b60405180910390fd5b505050565b600080823b905060008111915050919050565b6139ac838383613c83565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156139ef576139ea81613c88565b613a2e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613a2d57613a2c8382613cd1565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a7157613a6c81613e3e565b613ab0565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613aaf57613aae8282613f81565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b1c9061536d565b60405180910390fd5b613b2e81612b09565b15613b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b659061522d565b60405180910390fd5b613b7a60008383613646565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613bca919061564c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613cde8461194c565b613ce8919061572d565b9050600060076000848152602001908152602001600020549050818114613dcd576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613e52919061572d565b9050600060096000848152602001908152602001600020549050600060088381548110613ea8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613ef0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613f65577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613f8c8361194c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461400c90615817565b90600052602060002090601f01602090048101928261402e5760008555614075565b82601f1061404757805160ff1916838001178555614075565b82800160010185558215614075579182015b82811115614074578251825591602001919060010190614059565b5b5090506140829190614086565b5090565b5b8082111561409f576000816000905550600101614087565b5090565b60006140b66140b184615539565b615508565b905080838252602082019050828560208602820111156140d557600080fd5b60005b8581101561410557816140eb888261418b565b8452602084019350602083019250506001810190506140d8565b5050509392505050565b600061412261411d84615565565b615508565b90508281526020810184848401111561413a57600080fd5b6141458482856157d5565b509392505050565b600061416061415b84615595565b615508565b90508281526020810184848401111561417857600080fd5b6141838482856157d5565b509392505050565b60008135905061419a81615990565b92915050565b600082601f8301126141b157600080fd5b81356141c18482602086016140a3565b91505092915050565b6000813590506141d9816159a7565b92915050565b6000813590506141ee816159be565b92915050565b600081519050614203816159be565b92915050565b600082601f83011261421a57600080fd5b813561422a84826020860161410f565b91505092915050565b600082601f83011261424457600080fd5b813561425484826020860161414d565b91505092915050565b60008135905061426c816159d5565b92915050565b60006020828403121561428457600080fd5b60006142928482850161418b565b91505092915050565b600080604083850312156142ae57600080fd5b60006142bc8582860161418b565b92505060206142cd8582860161418b565b9150509250929050565b6000806000606084860312156142ec57600080fd5b60006142fa8682870161418b565b935050602061430b8682870161418b565b925050604061431c8682870161425d565b9150509250925092565b6000806000806080858703121561433c57600080fd5b600061434a8782880161418b565b945050602061435b8782880161418b565b935050604061436c8782880161425d565b925050606085013567ffffffffffffffff81111561438957600080fd5b61439587828801614209565b91505092959194509250565b600080604083850312156143b457600080fd5b60006143c28582860161418b565b92505060206143d3858286016141ca565b9150509250929050565b600080604083850312156143f057600080fd5b60006143fe8582860161418b565b925050602061440f8582860161425d565b9150509250929050565b60006020828403121561442b57600080fd5b600082013567ffffffffffffffff81111561444557600080fd5b614451848285016141a0565b91505092915050565b60006020828403121561446c57600080fd5b600061447a848285016141ca565b91505092915050565b60006020828403121561449557600080fd5b60006144a3848285016141df565b91505092915050565b6000602082840312156144be57600080fd5b60006144cc848285016141f4565b91505092915050565b6000602082840312156144e757600080fd5b600082013567ffffffffffffffff81111561450157600080fd5b61450d84828501614233565b91505092915050565b60006020828403121561452857600080fd5b60006145368482850161425d565b91505092915050565b600061454b8383615030565b60208301905092915050565b61456081615761565b82525050565b6000614571826155d5565b61457b8185615603565b9350614586836155c5565b8060005b838110156145b757815161459e888261453f565b97506145a9836155f6565b92505060018101905061458a565b5085935050505092915050565b6145cd81615773565b82525050565b60006145de826155e0565b6145e88185615614565b93506145f88185602086016157e4565b6146018161597f565b840191505092915050565b6000614617826155eb565b6146218185615630565b93506146318185602086016157e4565b61463a8161597f565b840191505092915050565b6000614650826155eb565b61465a8185615641565b935061466a8185602086016157e4565b80840191505092915050565b6000614683602b83615630565b91507f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008301527f68696c65207061757365640000000000000000000000000000000000000000006020830152604082019050919050565b60006146e9601483615630565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b6000614729600e83615630565b91507f45786365656473206e756d6265720000000000000000000000000000000000006000830152602082019050919050565b6000614769601b83615630565b91507f5075626c69632073616c65206861736e277420737461727465642100000000006000830152602082019050919050565b60006147a9602b83615630565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b600061480f603283615630565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000614875602683615630565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006148db601c83615630565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061491b602083615630565b91507f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d6000830152602082019050919050565b600061495b602483615630565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006149c1601983615630565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614a01600983615630565b91507f4d6178206c696d697400000000000000000000000000000000000000000000006000830152602082019050919050565b6000614a41602c83615630565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614aa7601083615630565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b6000614ae7603883615630565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614b4d602a83615630565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614bb3602983615630565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c19602083615630565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614c59600883615630565b91507f53616c6520656e640000000000000000000000000000000000000000000000006000830152602082019050919050565b6000614c99602c83615630565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614cff602083615630565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614d3f602983615630565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614da5602f83615630565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614e0b601183615630565b91507f56616c75652062656c6f772070726963650000000000000000000000000000006000830152602082019050919050565b6000614e4b602183615630565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614eb1600083615625565b9150600082019050919050565b6000614ecb601083615630565b91507f5472616e73666572206661696c65642e000000000000000000000000000000006000830152602082019050919050565b6000614f0b603183615630565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614f71602c83615630565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000614fd7603083615630565b91507f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f766564000000000000000000000000000000006020830152604082019050919050565b615039816157cb565b82525050565b615048816157cb565b82525050565b600061505a8285614645565b91506150668284614645565b91508190509392505050565b600061507d82614ea4565b9150819050919050565b600060208201905061509c6000830184614557565b92915050565b60006080820190506150b76000830187614557565b6150c46020830186614557565b6150d1604083018561503f565b81810360608301526150e381846145d3565b905095945050505050565b600060208201905081810360008301526151088184614566565b905092915050565b600060208201905061512560008301846145c4565b92915050565b60006020820190508181036000830152615145818461460c565b905092915050565b6000602082019050818103600083015261516681614676565b9050919050565b60006020820190508181036000830152615186816146dc565b9050919050565b600060208201905081810360008301526151a68161471c565b9050919050565b600060208201905081810360008301526151c68161475c565b9050919050565b600060208201905081810360008301526151e68161479c565b9050919050565b6000602082019050818103600083015261520681614802565b9050919050565b6000602082019050818103600083015261522681614868565b9050919050565b60006020820190508181036000830152615246816148ce565b9050919050565b600060208201905081810360008301526152668161490e565b9050919050565b600060208201905081810360008301526152868161494e565b9050919050565b600060208201905081810360008301526152a6816149b4565b9050919050565b600060208201905081810360008301526152c6816149f4565b9050919050565b600060208201905081810360008301526152e681614a34565b9050919050565b6000602082019050818103600083015261530681614a9a565b9050919050565b6000602082019050818103600083015261532681614ada565b9050919050565b6000602082019050818103600083015261534681614b40565b9050919050565b6000602082019050818103600083015261536681614ba6565b9050919050565b6000602082019050818103600083015261538681614c0c565b9050919050565b600060208201905081810360008301526153a681614c4c565b9050919050565b600060208201905081810360008301526153c681614c8c565b9050919050565b600060208201905081810360008301526153e681614cf2565b9050919050565b6000602082019050818103600083015261540681614d32565b9050919050565b6000602082019050818103600083015261542681614d98565b9050919050565b6000602082019050818103600083015261544681614dfe565b9050919050565b6000602082019050818103600083015261546681614e3e565b9050919050565b6000602082019050818103600083015261548681614ebe565b9050919050565b600060208201905081810360008301526154a681614efe565b9050919050565b600060208201905081810360008301526154c681614f64565b9050919050565b600060208201905081810360008301526154e681614fca565b9050919050565b6000602082019050615502600083018461503f565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561552f5761552e615950565b5b8060405250919050565b600067ffffffffffffffff82111561555457615553615950565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156155805761557f615950565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156155b0576155af615950565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000615657826157cb565b9150615662836157cb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615697576156966158c3565b5b828201905092915050565b60006156ad826157cb565b91506156b8836157cb565b9250826156c8576156c76158f2565b5b828204905092915050565b60006156de826157cb565b91506156e9836157cb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615722576157216158c3565b5b828202905092915050565b6000615738826157cb565b9150615743836157cb565b925082821015615756576157556158c3565b5b828203905092915050565b600061576c826157ab565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156158025780820151818401526020810190506157e7565b83811115615811576000848401525b50505050565b6000600282049050600182168061582f57607f821691505b6020821081141561584357615842615921565b5b50919050565b6000615854826157cb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615887576158866158c3565b5b600182019050919050565b600061589d826157cb565b91506158a8836157cb565b9250826158b8576158b76158f2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61599981615761565b81146159a457600080fd5b50565b6159b081615773565b81146159bb57600080fd5b50565b6159c78161577f565b81146159d257600080fd5b50565b6159de816157cb565b81146159e957600080fd5b5056fea264697066735822122008231362bbb7c9414a64fd2f6e1b5d99ca84a63362e16a56d1e0bd5168f43de964736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d56463773337732447a55687137697056364a4c53766841614357545639584e39486a4c454d63765a314a51642f00000000000000000000

Deployed Bytecode

0x6080604052600436106103355760003560e01c8063715018a6116101ab578063b2404460116100f7578063e4f20fb211610095578063eb4f847b1161006f578063eb4f847b14610b80578063eb8d244414610bab578063ed4dcde614610bd6578063f2fde38b14610bed57610335565b8063e4f20fb214610afc578063e927fc5c14610b18578063e985e9c514610b4357610335565b8063c87b56dd116100d1578063c87b56dd14610a52578063ce03982a14610a8f578063d547cfb714610aa6578063dc11089914610ad157610335565b8063b2404460146109d5578063b88d4fde146109fe578063bee6348a14610a2757610335565b80638d859f3e1161016457806395d89b411161013e57806395d89b411461093a57806397c2834114610965578063a22cb46514610990578063ae9b051c146109b957610335565b80638d859f3e146108cd5780638da5cb5b146108f857806390d7a8301461092357610335565b8063715018a614610804578063720a8f251461081b5780637f6497831461084457806383cf83f31461086d578063853828b6146108985780638ad5de28146108a257610335565b806340c10f191161028557806355f804b3116102235780636352211e116101fd5780636352211e146107435780636e51ca4b1461078057806370a082311461079c578063714c5398146107d957610335565b806355f804b3146106c457806359a7715a146106ed5780635c975abb1461071857610335565b8063438b63001161025f578063438b6300146106155780634b39d02e146106525780634f6ccce71461067d5780635179dc23146106ba57610335565b806340c10f19146105a757806342842e0e146105c357806342966c68146105ec57610335565b8063095ea7b3116102f257806323b872dd116102cc57806323b872dd146104d957806326a49e37146105025780632f745c591461053f5780633502a7161461057c57610335565b8063095ea7b31461045c578063109695231461048557806318160ddd146104ae57610335565b806301ffc9a71461033a57806302329a291461037757806305bf0801146103a057806306fdde03146103cb5780630814f24d146103f6578063081812fc1461041f575b600080fd5b34801561034657600080fd5b50610361600480360381019061035c9190614483565b610c16565b60405161036e9190615110565b60405180910390f35b34801561038357600080fd5b5061039e6004803603810190610399919061445a565b610c28565b005b3480156103ac57600080fd5b506103b5610cca565b6040516103c29190615110565b60405180910390f35b3480156103d757600080fd5b506103e0610cdd565b6040516103ed919061512b565b60405180910390f35b34801561040257600080fd5b5061041d60048036038101906104189190614516565b610d6f565b005b34801561042b57600080fd5b5061044660048036038101906104419190614516565b610df5565b6040516104539190615087565b60405180910390f35b34801561046857600080fd5b50610483600480360381019061047e91906143dd565b610e7a565b005b34801561049157600080fd5b506104ac60048036038101906104a791906144d5565b610f92565b005b3480156104ba57600080fd5b506104c3611028565b6040516104d091906154ed565b60405180910390f35b3480156104e557600080fd5b5061050060048036038101906104fb91906142d7565b611035565b005b34801561050e57600080fd5b5061052960048036038101906105249190614516565b611095565b60405161053691906154ed565b60405180910390f35b34801561054b57600080fd5b50610566600480360381019061056191906143dd565b6110b8565b60405161057391906154ed565b60405180910390f35b34801561058857600080fd5b5061059161115d565b60405161059e91906154ed565b60405180910390f35b6105c160048036038101906105bc91906143dd565b611163565b005b3480156105cf57600080fd5b506105ea60048036038101906105e591906142d7565b6113e5565b005b3480156105f857600080fd5b50610613600480360381019061060e9190614516565b611405565b005b34801561062157600080fd5b5061063c60048036038101906106379190614272565b611461565b60405161064991906150ee565b60405180910390f35b34801561065e57600080fd5b5061066761155b565b604051610674919061512b565b60405180910390f35b34801561068957600080fd5b506106a4600480360381019061069f9190614516565b6115e9565b6040516106b191906154ed565b60405180910390f35b6106c2611680565b005b3480156106d057600080fd5b506106eb60048036038101906106e691906144d5565b61172f565b005b3480156106f957600080fd5b506107026117c5565b60405161070f91906154ed565b60405180910390f35b34801561072457600080fd5b5061072d6117d4565b60405161073a9190615110565b60405180910390f35b34801561074f57600080fd5b5061076a60048036038101906107659190614516565b6117eb565b6040516107779190615087565b60405180910390f35b61079a60048036038101906107959190614516565b61189d565b005b3480156107a857600080fd5b506107c360048036038101906107be9190614272565b61194c565b6040516107d091906154ed565b60405180910390f35b3480156107e557600080fd5b506107ee611a04565b6040516107fb919061512b565b60405180910390f35b34801561081057600080fd5b50610819611a96565b005b34801561082757600080fd5b50610842600480360381019061083d9190614516565b611b1e565b005b34801561085057600080fd5b5061086b60048036038101906108669190614419565b611bcc565b005b34801561087957600080fd5b50610882611cf1565b60405161088f9190615110565b60405180910390f35b6108a0611d04565b005b3480156108ae57600080fd5b506108b7611db3565b6040516108c491906154ed565b60405180910390f35b3480156108d957600080fd5b506108e2611db8565b6040516108ef91906154ed565b60405180910390f35b34801561090457600080fd5b5061090d611dc3565b60405161091a9190615087565b60405180910390f35b34801561092f57600080fd5b50610938611ded565b005b34801561094657600080fd5b5061094f611e86565b60405161095c919061512b565b60405180910390f35b34801561097157600080fd5b5061097a611f18565b60405161098791906154ed565b60405180910390f35b34801561099c57600080fd5b506109b760048036038101906109b291906143a1565b611f1e565b005b6109d360048036038101906109ce9190614516565b61209f565b005b3480156109e157600080fd5b506109fc60048036038101906109f791906143dd565b61214e565b005b348015610a0a57600080fd5b50610a256004803603810190610a209190614326565b61226f565b005b348015610a3357600080fd5b50610a3c6122d1565b604051610a499190615110565b60405180910390f35b348015610a5e57600080fd5b50610a796004803603810190610a749190614516565b6122e4565b604051610a86919061512b565b60405180910390f35b348015610a9b57600080fd5b50610aa461238b565b005b348015610ab257600080fd5b50610abb61243d565b604051610ac8919061512b565b60405180910390f35b348015610add57600080fd5b50610ae66124cb565b604051610af39190615110565b60405180910390f35b610b166004803603810190610b1191906143dd565b6124e2565b005b348015610b2457600080fd5b50610b2d6126bf565b604051610b3a9190615087565b60405180910390f35b348015610b4f57600080fd5b50610b6a6004803603810190610b65919061429b565b6126d7565b604051610b779190615110565b60405180910390f35b348015610b8c57600080fd5b50610b9561276b565b604051610ba29190615110565b60405180910390f35b348015610bb757600080fd5b50610bc0612782565b604051610bcd9190615110565b60405180910390f35b348015610be257600080fd5b50610beb6127a2565b005b348015610bf957600080fd5b50610c146004803603810190610c0f9190614272565b61284a565b005b6000610c2182612942565b9050919050565b610c306129bc565b73ffffffffffffffffffffffffffffffffffffffff16610c4e611dc3565b73ffffffffffffffffffffffffffffffffffffffff1614610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b906153cd565b60405180910390fd5b600115158115151415610cbe57610cb96129c4565b610cc7565b610cc6612a67565b5b50565b601060029054906101000a900460ff1681565b606060008054610cec90615817565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1890615817565b8015610d655780601f10610d3a57610100808354040283529160200191610d65565b820191906000526020600020905b815481529060010190602001808311610d4857829003601f168201915b5050505050905090565b610d776129bc565b73ffffffffffffffffffffffffffffffffffffffff16610d95611dc3565b73ffffffffffffffffffffffffffffffffffffffff1614610deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de2906153cd565b60405180910390fd5b8060118190555050565b6000610e0082612b09565b610e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e36906153ad565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e85826117eb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eed9061544d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f156129bc565b73ffffffffffffffffffffffffffffffffffffffff161480610f445750610f4381610f3e6129bc565b6126d7565b5b610f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7a9061530d565b60405180910390fd5b610f8d8383612b75565b505050565b610f9a6129bc565b73ffffffffffffffffffffffffffffffffffffffff16610fb8611dc3565b73ffffffffffffffffffffffffffffffffffffffff161461100e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611005906153cd565b60405180910390fd5b80600e9080519060200190611024929190614000565b5050565b6000600880549050905090565b6110466110406129bc565b82612c2e565b611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107c9061548d565b60405180910390fd5b611090838383612d0c565b505050565b60006110b18266753d533d968000612f6890919063ffffffff16565b9050919050565b60006110c38361194c565b8210611104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fb906151cd565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600d5481565b600d5461116e612f7e565b11156111af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a69061538d565b60405180910390fd5b6111b7611dc3565b73ffffffffffffffffffffffffffffffffffffffff166111d56129bc565b73ffffffffffffffffffffffffffffffffffffffff1614611239576111f86117d4565b15611238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122f906152ed565b60405180910390fd5b5b601060029054906101000a900460ff16611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f906151ad565b60405180910390fd5b6000611292612f7e565b9050600d5482826112a3919061564c565b11156112e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112db906152ad565b60405180910390fd5b600d54811115611329576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113209061538d565b60405180910390fd5b601482111561136d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113649061518d565b60405180910390fd5b61137682611095565b3410156113b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113af9061542d565b60405180910390fd5b60005b828110156113df576113cc84612f8f565b80806113d790615849565b9150506113bb565b50505050565b6114008383836040518060200160405280600081525061226f565b505050565b6114166114106129bc565b82612c2e565b611455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144c906154cd565b60405180910390fd5b61145e81612fe0565b50565b6060600061146e8361194c565b905060008167ffffffffffffffff8111156114b2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156114e05781602001602082028036833780820191505090505b50905060005b82811015611550576114f885826110b8565b828281518110611531577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061154890615849565b9150506114e6565b508092505050919050565b600e805461156890615817565b80601f016020809104026020016040519081016040528092919081815260200182805461159490615817565b80156115e15780601f106115b6576101008083540402835291602001916115e1565b820191906000526020600020905b8154815290600101906020018083116115c457829003601f168201915b505050505081565b60006115f3611028565b8210611634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162b906154ad565b60405180910390fd5b6008828154811061166e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6116886129bc565b73ffffffffffffffffffffffffffffffffffffffff166116a6611dc3565b73ffffffffffffffffffffffffffffffffffffffff16146116fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f3906153cd565b60405180910390fd5b60004790506000811161170e57600080fd5b61172c73893e23c01658bc1c112d6fdf10f34826c280a1b1476130f1565b50565b6117376129bc565b73ffffffffffffffffffffffffffffffffffffffff16611755611dc3565b73ffffffffffffffffffffffffffffffffffffffff16146117ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a2906153cd565b60405180910390fd5b80600f90805190602001906117c1929190614000565b5050565b60006117cf612f7e565b905090565b6000600a60149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b9061534d565b60405180910390fd5b80915050919050565b6118a56129bc565b73ffffffffffffffffffffffffffffffffffffffff166118c3611dc3565b73ffffffffffffffffffffffffffffffffffffffff1614611919576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611910906153cd565b60405180910390fd5b600047905081811161192a57600080fd5b61194873893e23c01658bc1c112d6fdf10f34826c280a1b1836130f1565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b49061532d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600f8054611a1390615817565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3f90615817565b8015611a8c5780601f10611a6157610100808354040283529160200191611a8c565b820191906000526020600020905b815481529060010190602001808311611a6f57829003601f168201915b5050505050905090565b611a9e6129bc565b73ffffffffffffffffffffffffffffffffffffffff16611abc611dc3565b73ffffffffffffffffffffffffffffffffffffffff1614611b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b09906153cd565b60405180910390fd5b611b1c600061313c565b565b611b266129bc565b73ffffffffffffffffffffffffffffffffffffffff16611b44611dc3565b73ffffffffffffffffffffffffffffffffffffffff1614611b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b91906153cd565b60405180910390fd5b601060009054906101000a900460ff16611bb357600080fd5b6122b8811115611bc257600080fd5b80600d8190555050565b611bd46129bc565b73ffffffffffffffffffffffffffffffffffffffff16611bf2611dc3565b73ffffffffffffffffffffffffffffffffffffffff1614611c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3f906153cd565b60405180910390fd5b60005b6032811015611ced57601154600c6000848481518110611c94577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611ce590615849565b915050611c4b565b5050565b601060009054906101000a900460ff1681565b611d0c6129bc565b73ffffffffffffffffffffffffffffffffffffffff16611d2a611dc3565b73ffffffffffffffffffffffffffffffffffffffff1614611d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d77906153cd565b60405180910390fd5b600047905060008111611d9257600080fd5b611db073893e23c01658bc1c112d6fdf10f34826c280a1b147613202565b50565b601481565b66753d533d96800081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611df56129bc565b73ffffffffffffffffffffffffffffffffffffffff16611e13611dc3565b73ffffffffffffffffffffffffffffffffffffffff1614611e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e60906153cd565b60405180910390fd5b6001601060026101000a81548160ff021916908315150217905550565b606060018054611e9590615817565b80601f0160208091040260200160405190810160405280929190818152602001828054611ec190615817565b8015611f0e5780601f10611ee357610100808354040283529160200191611f0e565b820191906000526020600020905b815481529060010190602001808311611ef157829003601f168201915b5050505050905090565b60125481565b611f266129bc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8b9061528d565b60405180910390fd5b8060056000611fa16129bc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661204e6129bc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120939190615110565b60405180910390a35050565b6120a76129bc565b73ffffffffffffffffffffffffffffffffffffffff166120c5611dc3565b73ffffffffffffffffffffffffffffffffffffffff161461211b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612112906153cd565b60405180910390fd5b600047905081811161212c57600080fd5b61214a73893e23c01658bc1c112d6fdf10f34826c280a1b183613202565b5050565b6121566129bc565b73ffffffffffffffffffffffffffffffffffffffff16612174611dc3565b73ffffffffffffffffffffffffffffffffffffffff16146121ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c1906153cd565b60405180910390fd5b60006121d4611028565b90506000821180156121e857506012548211155b612227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221e9061524d565b60405180910390fd5b60005b8281101561224e5761223b84612f8f565b808061224690615849565b91505061222a565b50612264826012546132b390919063ffffffff16565b601281905550505050565b61228061227a6129bc565b83612c2e565b6122bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b69061548d565b60405180910390fd5b6122cb848484846132c9565b50505050565b601060019054906101000a900460ff1681565b60606122ef82612b09565b61232e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123259061540d565b60405180910390fd5b6000612338613325565b905060008151116123585760405180602001604052806000815250612383565b80612362846133b7565b60405160200161237392919061504e565b6040516020818303038152906040525b915050919050565b6123936129bc565b73ffffffffffffffffffffffffffffffffffffffff166123b1611dc3565b73ffffffffffffffffffffffffffffffffffffffff1614612407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fe906153cd565b60405180910390fd5b601060009054906101000a900460ff1661242057600080fd5b6000601060006101000a81548160ff021916908315150217905550565b600f805461244a90615817565b80601f016020809104026020016040519081016040528092919081815260200182805461247690615817565b80156124c35780601f10612498576101008083540402835291602001916124c3565b820191906000526020600020905b8154815290600101906020018083116124a657829003601f168201915b505050505081565b6000601060029054906101000a900460ff16905090565b601060019054906101000a900460ff166124fb57600080fd5b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481111561254757600080fd5b6000612551612f7e565b9050600d548282612562919061564c565b11156125a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259a906152ad565b60405180910390fd5b66038d7ea4c680006021836125b891906156d3565b6125c291906156d3565b341015612604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fb9061542d565b60405180910390fd5b60005b8281101561262b5761261884612f8f565b808061262390615849565b915050612607565b5081600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612677919061572d565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b73893e23c01658bc1c112d6fdf10f34826c280a1b181565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000601060019054906101000a900460ff16905090565b600061278c6117d4565b1561279a576000905061279f565b600190505b90565b6127aa6129bc565b73ffffffffffffffffffffffffffffffffffffffff166127c8611dc3565b73ffffffffffffffffffffffffffffffffffffffff161461281e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612815906153cd565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b6128526129bc565b73ffffffffffffffffffffffffffffffffffffffff16612870611dc3565b73ffffffffffffffffffffffffffffffffffffffff16146128c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bd906153cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292d9061520d565b60405180910390fd5b61293f8161313c565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806129b557506129b482613564565b5b9050919050565b600033905090565b6129cc6117d4565b15612a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a03906152ed565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612a506129bc565b604051612a5d9190615087565b60405180910390a1565b612a6f6117d4565b612aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa59061516d565b60405180910390fd5b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612af26129bc565b604051612aff9190615087565b60405180910390a1565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612be8836117eb565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612c3982612b09565b612c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6f906152cd565b60405180910390fd5b6000612c83836117eb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612cf257508373ffffffffffffffffffffffffffffffffffffffff16612cda84610df5565b73ffffffffffffffffffffffffffffffffffffffff16145b80612d035750612d0281856126d7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612d2c826117eb565b73ffffffffffffffffffffffffffffffffffffffff1614612d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d79906153ed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de99061526d565b60405180910390fd5b612dfd838383613646565b612e08600082612b75565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e58919061572d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612eaf919061564c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008183612f7691906156d3565b905092915050565b6000612f8a600b613656565b905090565b6000612f99612f7e565b9050612fa5600b613664565b612faf828261367a565b807f86f740003797f6ed61a3eadecd8efb70132beda461c28b0bc74e5fdea2567a0560405160405180910390a25050565b6000612feb826117eb565b9050612ff981600084613646565b613004600083612b75565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613054919061572d565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015613137573d6000803e3d6000fd5b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161322890615072565b60006040518083038185875af1925050503d8060008114613265576040519150601f19603f3d011682016040523d82523d6000602084013e61326a565b606091505b50509050806132ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132a59061546d565b60405180910390fd5b505050565b600081836132c1919061572d565b905092915050565b6132d4848484612d0c565b6132e084848484613698565b61331f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613316906151ed565b60405180910390fd5b50505050565b6060600f805461333490615817565b80601f016020809104026020016040519081016040528092919081815260200182805461336090615817565b80156133ad5780601f10613382576101008083540402835291602001916133ad565b820191906000526020600020905b81548152906001019060200180831161339057829003601f168201915b5050505050905090565b606060008214156133ff576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061355f565b600082905060005b6000821461343157808061341a90615849565b915050600a8261342a91906156a2565b9150613407565b60008167ffffffffffffffff811115613473577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156134a55781602001600182028036833780820191505090505b5090505b60008514613558576001826134be919061572d565b9150600a856134cd9190615892565b60306134d9919061564c565b60f81b818381518110613515577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561355191906156a2565b94506134a9565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061362f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061363f575061363e8261382f565b5b9050919050565b613651838383613899565b505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b613694828260405180602001604052806000815250613933565b5050565b60006136b98473ffffffffffffffffffffffffffffffffffffffff1661398e565b15613822578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026136e26129bc565b8786866040518563ffffffff1660e01b815260040161370494939291906150a2565b602060405180830381600087803b15801561371e57600080fd5b505af192505050801561374f57506040513d601f19601f8201168201806040525081019061374c91906144ac565b60015b6137d2573d806000811461377f576040519150601f19603f3d011682016040523d82523d6000602084013e613784565b606091505b506000815114156137ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137c1906151ed565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613827565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6138a48383836139a1565b6138ac611dc3565b73ffffffffffffffffffffffffffffffffffffffff166138ca6129bc565b73ffffffffffffffffffffffffffffffffffffffff161461392e576138ed6117d4565b1561392d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139249061514d565b60405180910390fd5b5b505050565b61393d8383613ab5565b61394a6000848484613698565b613989576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613980906151ed565b60405180910390fd5b505050565b600080823b905060008111915050919050565b6139ac838383613c83565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156139ef576139ea81613c88565b613a2e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613a2d57613a2c8382613cd1565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a7157613a6c81613e3e565b613ab0565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613aaf57613aae8282613f81565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b1c9061536d565b60405180910390fd5b613b2e81612b09565b15613b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b659061522d565b60405180910390fd5b613b7a60008383613646565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613bca919061564c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613cde8461194c565b613ce8919061572d565b9050600060076000848152602001908152602001600020549050818114613dcd576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613e52919061572d565b9050600060096000848152602001908152602001600020549050600060088381548110613ea8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613ef0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613f65577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613f8c8361194c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461400c90615817565b90600052602060002090601f01602090048101928261402e5760008555614075565b82601f1061404757805160ff1916838001178555614075565b82800160010185558215614075579182015b82811115614074578251825591602001919060010190614059565b5b5090506140829190614086565b5090565b5b8082111561409f576000816000905550600101614087565b5090565b60006140b66140b184615539565b615508565b905080838252602082019050828560208602820111156140d557600080fd5b60005b8581101561410557816140eb888261418b565b8452602084019350602083019250506001810190506140d8565b5050509392505050565b600061412261411d84615565565b615508565b90508281526020810184848401111561413a57600080fd5b6141458482856157d5565b509392505050565b600061416061415b84615595565b615508565b90508281526020810184848401111561417857600080fd5b6141838482856157d5565b509392505050565b60008135905061419a81615990565b92915050565b600082601f8301126141b157600080fd5b81356141c18482602086016140a3565b91505092915050565b6000813590506141d9816159a7565b92915050565b6000813590506141ee816159be565b92915050565b600081519050614203816159be565b92915050565b600082601f83011261421a57600080fd5b813561422a84826020860161410f565b91505092915050565b600082601f83011261424457600080fd5b813561425484826020860161414d565b91505092915050565b60008135905061426c816159d5565b92915050565b60006020828403121561428457600080fd5b60006142928482850161418b565b91505092915050565b600080604083850312156142ae57600080fd5b60006142bc8582860161418b565b92505060206142cd8582860161418b565b9150509250929050565b6000806000606084860312156142ec57600080fd5b60006142fa8682870161418b565b935050602061430b8682870161418b565b925050604061431c8682870161425d565b9150509250925092565b6000806000806080858703121561433c57600080fd5b600061434a8782880161418b565b945050602061435b8782880161418b565b935050604061436c8782880161425d565b925050606085013567ffffffffffffffff81111561438957600080fd5b61439587828801614209565b91505092959194509250565b600080604083850312156143b457600080fd5b60006143c28582860161418b565b92505060206143d3858286016141ca565b9150509250929050565b600080604083850312156143f057600080fd5b60006143fe8582860161418b565b925050602061440f8582860161425d565b9150509250929050565b60006020828403121561442b57600080fd5b600082013567ffffffffffffffff81111561444557600080fd5b614451848285016141a0565b91505092915050565b60006020828403121561446c57600080fd5b600061447a848285016141ca565b91505092915050565b60006020828403121561449557600080fd5b60006144a3848285016141df565b91505092915050565b6000602082840312156144be57600080fd5b60006144cc848285016141f4565b91505092915050565b6000602082840312156144e757600080fd5b600082013567ffffffffffffffff81111561450157600080fd5b61450d84828501614233565b91505092915050565b60006020828403121561452857600080fd5b60006145368482850161425d565b91505092915050565b600061454b8383615030565b60208301905092915050565b61456081615761565b82525050565b6000614571826155d5565b61457b8185615603565b9350614586836155c5565b8060005b838110156145b757815161459e888261453f565b97506145a9836155f6565b92505060018101905061458a565b5085935050505092915050565b6145cd81615773565b82525050565b60006145de826155e0565b6145e88185615614565b93506145f88185602086016157e4565b6146018161597f565b840191505092915050565b6000614617826155eb565b6146218185615630565b93506146318185602086016157e4565b61463a8161597f565b840191505092915050565b6000614650826155eb565b61465a8185615641565b935061466a8185602086016157e4565b80840191505092915050565b6000614683602b83615630565b91507f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008301527f68696c65207061757365640000000000000000000000000000000000000000006020830152604082019050919050565b60006146e9601483615630565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b6000614729600e83615630565b91507f45786365656473206e756d6265720000000000000000000000000000000000006000830152602082019050919050565b6000614769601b83615630565b91507f5075626c69632073616c65206861736e277420737461727465642100000000006000830152602082019050919050565b60006147a9602b83615630565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b600061480f603283615630565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000614875602683615630565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006148db601c83615630565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061491b602083615630565b91507f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d6000830152602082019050919050565b600061495b602483615630565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006149c1601983615630565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614a01600983615630565b91507f4d6178206c696d697400000000000000000000000000000000000000000000006000830152602082019050919050565b6000614a41602c83615630565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614aa7601083615630565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b6000614ae7603883615630565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614b4d602a83615630565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614bb3602983615630565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c19602083615630565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614c59600883615630565b91507f53616c6520656e640000000000000000000000000000000000000000000000006000830152602082019050919050565b6000614c99602c83615630565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614cff602083615630565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614d3f602983615630565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614da5602f83615630565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614e0b601183615630565b91507f56616c75652062656c6f772070726963650000000000000000000000000000006000830152602082019050919050565b6000614e4b602183615630565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614eb1600083615625565b9150600082019050919050565b6000614ecb601083615630565b91507f5472616e73666572206661696c65642e000000000000000000000000000000006000830152602082019050919050565b6000614f0b603183615630565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614f71602c83615630565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000614fd7603083615630565b91507f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f766564000000000000000000000000000000006020830152604082019050919050565b615039816157cb565b82525050565b615048816157cb565b82525050565b600061505a8285614645565b91506150668284614645565b91508190509392505050565b600061507d82614ea4565b9150819050919050565b600060208201905061509c6000830184614557565b92915050565b60006080820190506150b76000830187614557565b6150c46020830186614557565b6150d1604083018561503f565b81810360608301526150e381846145d3565b905095945050505050565b600060208201905081810360008301526151088184614566565b905092915050565b600060208201905061512560008301846145c4565b92915050565b60006020820190508181036000830152615145818461460c565b905092915050565b6000602082019050818103600083015261516681614676565b9050919050565b60006020820190508181036000830152615186816146dc565b9050919050565b600060208201905081810360008301526151a68161471c565b9050919050565b600060208201905081810360008301526151c68161475c565b9050919050565b600060208201905081810360008301526151e68161479c565b9050919050565b6000602082019050818103600083015261520681614802565b9050919050565b6000602082019050818103600083015261522681614868565b9050919050565b60006020820190508181036000830152615246816148ce565b9050919050565b600060208201905081810360008301526152668161490e565b9050919050565b600060208201905081810360008301526152868161494e565b9050919050565b600060208201905081810360008301526152a6816149b4565b9050919050565b600060208201905081810360008301526152c6816149f4565b9050919050565b600060208201905081810360008301526152e681614a34565b9050919050565b6000602082019050818103600083015261530681614a9a565b9050919050565b6000602082019050818103600083015261532681614ada565b9050919050565b6000602082019050818103600083015261534681614b40565b9050919050565b6000602082019050818103600083015261536681614ba6565b9050919050565b6000602082019050818103600083015261538681614c0c565b9050919050565b600060208201905081810360008301526153a681614c4c565b9050919050565b600060208201905081810360008301526153c681614c8c565b9050919050565b600060208201905081810360008301526153e681614cf2565b9050919050565b6000602082019050818103600083015261540681614d32565b9050919050565b6000602082019050818103600083015261542681614d98565b9050919050565b6000602082019050818103600083015261544681614dfe565b9050919050565b6000602082019050818103600083015261546681614e3e565b9050919050565b6000602082019050818103600083015261548681614ebe565b9050919050565b600060208201905081810360008301526154a681614efe565b9050919050565b600060208201905081810360008301526154c681614f64565b9050919050565b600060208201905081810360008301526154e681614fca565b9050919050565b6000602082019050615502600083018461503f565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561552f5761552e615950565b5b8060405250919050565b600067ffffffffffffffff82111561555457615553615950565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156155805761557f615950565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156155b0576155af615950565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000615657826157cb565b9150615662836157cb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615697576156966158c3565b5b828201905092915050565b60006156ad826157cb565b91506156b8836157cb565b9250826156c8576156c76158f2565b5b828204905092915050565b60006156de826157cb565b91506156e9836157cb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615722576157216158c3565b5b828202905092915050565b6000615738826157cb565b9150615743836157cb565b925082821015615756576157556158c3565b5b828203905092915050565b600061576c826157ab565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156158025780820151818401526020810190506157e7565b83811115615811576000848401525b50505050565b6000600282049050600182168061582f57607f821691505b6020821081141561584357615842615921565b5b50919050565b6000615854826157cb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615887576158866158c3565b5b600182019050919050565b600061589d826157cb565b91506158a8836157cb565b9250826158b8576158b76158f2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61599981615761565b81146159a457600080fd5b50565b6159b081615773565b81146159bb57600080fd5b50565b6159c78161577f565b81146159d257600080fd5b50565b6159de816157cb565b81146159e957600080fd5b5056fea264697066735822122008231362bbb7c9414a64fd2f6e1b5d99ca84a63362e16a56d1e0bd5168f43de964736f6c63430008000033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d56463773337732447a55687137697056364a4c53766841614357545639584e39486a4c454d63765a314a51642f00000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmVF7s3w2DzUhq7ipV6JLSvhAaCWTV9XN9HjLEMcvZ1JQd/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d56463773337732447a55687137697056364a4c53766841
Arg [3] : 614357545639584e39486a4c454d63765a314a51642f00000000000000000000


Deployed Bytecode Sourcemap

236:7195:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7247:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5321:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;873:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2335:98:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2889:111:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3846:217:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3384:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4840:125:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1530:111:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4710:330:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4410:102:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1206:253:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;498:34:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1707:507;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5106:179:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;433:241:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4971:344:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;722:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1713:230:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5876:204:13;;;:::i;:::-;;4735:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1612:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1032:84:15;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2038:235:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6086:209:13;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1776:205:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4635:94:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1596:92:14;;;;;;;;;;;;;:::i;:::-;;3937:163:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3006:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;796:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5475:192;;;:::i;:::-;;587:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;538:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;964:85:14;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2804:79:13;;;;;;;;;;;;;:::i;:::-;;2497:102:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1024:31:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4130:290:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5673:197:13;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6610:392;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5351:320:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;836:31:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2665:329:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4106:298:13;;;;;;;;;;;;;:::i;:::-;;764:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3363:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2220:483;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;633:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4486:162:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3458:87:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3198:159;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2709:89;;;;;;;;;;;;;:::i;:::-;;1837:189:14;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7247:177:13;7358:4;7381:36;7405:11;7381:23;:36::i;:::-;7374:43;;7247:177;;;:::o;5321:148::-;1187:12:14;:10;:12::i;:::-;1176:23;;:7;:5;:7::i;:::-;:23;;;1168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5384:4:13::1;5377:11;;:3;:11;;;5373:70;;;5404:8;:6;:8::i;:::-;5426:7;;5373:70;5452:10;:8;:10::i;:::-;1246:1:14;5321:148:13::0;:::o;873:32::-;;;;;;;;;;;;;:::o;2335:98:4:-;2389:13;2421:5;2414:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2335:98;:::o;2889:111:13:-;1187:12:14;:10;:12::i;:::-;1176:23;;:7;:5;:7::i;:::-;:23;;;1168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2986:7:13::1;2966:17;:27;;;;2889:111:::0;:::o;3846:217:4:-;3922:7;3949:16;3957:7;3949;:16::i;:::-;3941:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4032:15;:24;4048:7;4032:24;;;;;;;;;;;;;;;;;;;;;4025:31;;3846:217;;;:::o;3384:401::-;3464:13;3480:23;3495:7;3480:14;:23::i;:::-;3464:39;;3527:5;3521:11;;:2;:11;;;;3513:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3618:5;3602:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3627:37;3644:5;3651:12;:10;:12::i;:::-;3627:16;:37::i;:::-;3602:62;3581:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;3757:21;3766:2;3770:7;3757:8;:21::i;:::-;3384:401;;;:::o;4840:125:13:-;1187:12:14;:10;:12::i;:::-;1176:23;;:7;:5;:7::i;:::-;:23;;;1168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4944:14:13::1;4924:17;:34;;;;;;;;;;;;:::i;:::-;;4840:125:::0;:::o;1530:111:6:-;1591:7;1617:10;:17;;;;1610:24;;1530:111;:::o;4710:330:4:-;4899:41;4918:12;:10;:12::i;:::-;4932:7;4899:18;:41::i;:::-;4891:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5005:28;5015:4;5021:2;5025:7;5005:9;:28::i;:::-;4710:330;;;:::o;4410:102:13:-;4462:7;4488:17;4498:6;570:11;4488:9;;:17;;;;:::i;:::-;4481:24;;4410:102;;;:::o;1206:253:6:-;1303:7;1338:23;1355:5;1338:16;:23::i;:::-;1330:5;:31;1322:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1426:12;:19;1439:5;1426:19;;;;;;;;;;;;;;;:26;1446:5;1426:26;;;;;;;;;;;;1419:33;;1206:253;;;;:::o;498:34:13:-;;;;:::o;1707:507::-;1354:12;;1336:14;:12;:14::i;:::-;:30;;1328:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;1409:7;:5;:7::i;:::-;1393:23;;:12;:10;:12::i;:::-;:23;;;1389:92;;1441:8;:6;:8::i;:::-;1440:9;1432:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1389:92;1794:12:::1;;;;;;;;;;;1786:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;1848:13;1864:14;:12;:14::i;:::-;1848:30;;1914:12;;1904:6;1896:5;:14;;;;:::i;:::-;:30;;1888:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;1967:12;;1958:5;:21;;1950:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;625:2;2010:6;:21;;2002:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:13;2087:6;2081:5;:13::i;:::-;2068:9;:26;;2060:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;2132:9;2127:81;2151:6;2147:1;:10;2127:81;;;2178:19;2193:3;2178:14;:19::i;:::-;2159:3;;;;;:::i;:::-;;;;2127:81;;;;1490:1;1707:507:::0;;:::o;5106:179:4:-;5239:39;5256:4;5262:2;5266:7;5239:39;;;;;;;;;;;;:16;:39::i;:::-;5106:179;;;:::o;433:241:5:-;549:41;568:12;:10;:12::i;:::-;582:7;549:18;:41::i;:::-;541:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;653:14;659:7;653:5;:14::i;:::-;433:241;:::o;4971:344:13:-;5033:16;5061:18;5082:17;5092:6;5082:9;:17::i;:::-;5061:38;;5110:25;5152:10;5138:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5110:53;;5178:9;5173:110;5197:10;5193:1;:14;5173:110;;;5242:30;5262:6;5270:1;5242:19;:30::i;:::-;5228:8;5237:1;5228:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;5209:3;;;;;:::i;:::-;;;;5173:110;;;;5300:8;5293:15;;;;4971:344;;;:::o;722:36::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1713:230:6:-;1788:7;1823:30;:28;:30::i;:::-;1815:5;:38;1807:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;1919:10;1930:5;1919:17;;;;;;;;;;;;;;;;;;;;;;;;1912:24;;1713:230;;;:::o;5876:204:13:-;1187:12:14;:10;:12::i;:::-;1176:23;;:7;:5;:7::i;:::-;:23;;;1168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5940:15:13::1;5958:21;5940:39;;6007:1;5997:7;:11;5989:20;;;::::0;::::1;;6019:54;674:42;6051:21;6019:15;:54::i;:::-;1246:1:14;5876:204:13:o:0;4735:99::-;1187:12:14;:10;:12::i;:::-;1176:23;;:7;:5;:7::i;:::-;:23;;;1168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4820:7:13::1;4805:12;:22;;;;;;;;;;;;:::i;:::-;;4735:99:::0;:::o;1612:89::-;1654:7;1680:14;:12;:14::i;:::-;1673:21;;1612:89;:::o;1032:84:15:-;1079:4;1102:7;;;;;;;;;;;1095:14;;1032:84;:::o;2038:235:4:-;2110:7;2129:13;2145:7;:16;2153:7;2145:16;;;;;;;;;;;;;;;;;;;;;2129:32;;2196:1;2179:19;;:5;:19;;;;2171:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2261:5;2254:12;;;2038:235;;;:::o;6086:209:13:-;1187:12:14;:10;:12::i;:::-;1176:23;;:7;:5;:7::i;:::-;:23;;;1168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6163:15:13::1;6181:21;6163:39;;6230:7;6220;:17;6212:26;;;::::0;::::1;;6248:40;674:42;6280:7;6248:15;:40::i;:::-;1246:1:14;6086:209:13::0;:::o;1776:205:4:-;1848:7;1892:1;1875:19;;:5;:19;;;;1867:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;1958:9;:16;1968:5;1958:16;;;;;;;;;;;;;;;;1951:23;;1776:205;;;:::o;4635:94:13:-;4678:13;4710:12;4703:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4635:94;:::o;1596:92:14:-;1187:12;:10;:12::i;:::-;1176:23;;:7;:5;:7::i;:::-;:23;;;1168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1660:21:::1;1678:1;1660:9;:21::i;:::-;1596:92::o:0;3937:163:13:-;1187:12:14;:10;:12::i;:::-;1176:23;;:7;:5;:7::i;:::-;:23;;;1168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4013:15:13::1;;;;;;;;;;;4005:24;;;::::0;::::1;;4057:4;4047:6;:14;;4039:23;;;::::0;::::1;;4087:6;4072:12;:21;;;;3937:163:::0;:::o;3006:186::-;1187:12:14;:10;:12::i;:::-;1176:23;;:7;:5;:7::i;:::-;:23;;;1168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3091:9:13::1;3086:100;3110:2;3106:1;:6;3086:100;;;3158:17;;3131:9;:24;3141:10;3152:1;3141:13;;;;;;;;;;;;;;;;;;;;;;3131:24;;;;;;;;;;;;;;;:44;;;;3114:3;;;;;:::i;:::-;;;;3086:100;;;;3006:186:::0;:::o;796:34::-;;;;;;;;;;;;;:::o;5475:192::-;1187:12:14;:10;:12::i;:::-;1176:23;;:7;:5;:7::i;:::-;:23;;;1168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5533:15:13::1;5551:21;5533:39;;5600:1;5590:7;:11;5582:20;;;::::0;::::1;;5612:48;674:42;5638:21;5612:9;:48::i;:::-;1246:1:14;5475:192:13:o:0;587:40::-;625:2;587:40;:::o;538:43::-;570:11;538:43;:::o;964:85:14:-;1010:7;1036:6;;;;;;;;;;;1029:13;;964:85;:::o;2804:79:13:-;1187:12:14;:10;:12::i;:::-;1176:23;;:7;:5;:7::i;:::-;:23;;;1168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2872:4:13::1;2857:12;;:19;;;;;;;;;;;;;;;;;;2804:79::o:0;2497:102:4:-;2553:13;2585:7;2578:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2497:102;:::o;1024:31:13:-;;;;:::o;4130:290:4:-;4244:12;:10;:12::i;:::-;4232:24;;:8;:24;;;;4224:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;4342:8;4297:18;:32;4316:12;:10;:12::i;:::-;4297:32;;;;;;;;;;;;;;;:42;4330:8;4297:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;4394:8;4365:48;;4380:12;:10;:12::i;:::-;4365:48;;;4404:8;4365:48;;;;;;:::i;:::-;;;;;;;;4130:290;;:::o;5673:197:13:-;1187:12:14;:10;:12::i;:::-;1176:23;;:7;:5;:7::i;:::-;:23;;;1168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5744:15:13::1;5762:21;5744:39;;5811:7;5801;:17;5793:26;;;::::0;::::1;;5829:34;674:42;5855:7;5829:9;:34::i;:::-;1246:1:14;5673:197:13::0;:::o;6610:392::-;1187:12:14;:10;:12::i;:::-;1176:23;;:7;:5;:7::i;:::-;:23;;;1168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6705:11:13::1;6719:13;:11;:13::i;:::-;6705:27;;6767:1;6750:14;:18;:53;;;;;6790:13;;6772:14;:31;;6750:53;6742:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;6855:6;6850:87;6871:14;6867:1;:18;6850:87;;;6906:19;6921:3;6906:14;:19::i;:::-;6887:3;;;;;:::i;:::-;;;;6850:87;;;;6962:33;6980:14;6962:13;;:17;;:33;;;;:::i;:::-;6946:13;:49;;;;1246:1:14;6610:392:13::0;;:::o;5351:320:4:-;5520:41;5539:12;:10;:12::i;:::-;5553:7;5520:18;:41::i;:::-;5512:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5625:39;5639:4;5645:2;5649:7;5658:5;5625:13;:39::i;:::-;5351:320;;;;:::o;836:31:13:-;;;;;;;;;;;;;:::o;2665:329:4:-;2738:13;2771:16;2779:7;2771;:16::i;:::-;2763:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;2850:21;2874:10;:8;:10::i;:::-;2850:34;;2925:1;2907:7;2901:21;:25;:86;;;;;;;;;;;;;;;;;2953:7;2962:18;:7;:16;:18::i;:::-;2936:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2901:86;2894:93;;;2665:329;;;:::o;4106:298:13:-;1187:12:14;:10;:12::i;:::-;1176:23;;:7;:5;:7::i;:::-;:23;;;1168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4348:15:13::1;;;;;;;;;;;4340:24;;;::::0;::::1;;4392:5;4374:15;;:23;;;;;;;;;;;;;;;;;;4106:298::o:0;764:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3363:89::-;3410:4;3433:12;;;;;;;;;;;3426:19;;3363:89;:::o;2220:483::-;2303:11;;;;;;;;;;;2295:20;;;;;;2343:9;:21;2353:10;2343:21;;;;;;;;;;;;;;;;2333:6;:31;;2325:40;;;;;;2375:13;2391:14;:12;:14::i;:::-;2375:30;;2441:12;;2431:6;2423:5;:14;;;;:::i;:::-;:30;;2415:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;2513:6;2508:2;2499:6;:11;;;;:::i;:::-;:20;;;;:::i;:::-;2485:9;:35;;2477:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;2558:9;2553:79;2577:6;2573:1;:10;2553:79;;;2602:19;2617:3;2602:14;:19::i;:::-;2585:3;;;;;:::i;:::-;;;;2553:79;;;;2690:6;2666:9;:21;2676:10;2666:21;;;;;;;;;;;;;;;;:30;;;;:::i;:::-;2642:9;:21;2652:10;2642:21;;;;;;;;;;;;;;;:54;;;;2220:483;;;:::o;633:83::-;674:42;633:83;:::o;4486:162:4:-;4583:4;4606:18;:25;4625:5;4606:25;;;;;;;;;;;;;;;:35;4632:8;4606:35;;;;;;;;;;;;;;;;;;;;;;;;;4599:42;;4486:162;;;;:::o;3458:87:13:-;3504:4;3527:11;;;;;;;;;;;3520:18;;3458:87;:::o;3198:159::-;3243:4;3262:8;:6;:8::i;:::-;3259:92;;;3293:5;3286:12;;;;3259:92;3336:4;3329:11;;3198:159;;:::o;2709:89::-;1187:12:14;:10;:12::i;:::-;1176:23;;:7;:5;:7::i;:::-;:23;;;1168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2780:11:13::1;;;;;;;;;;;2779:12;2765:11;;:26;;;;;;;;;;;;;;;;;;2709:89::o:0;1837:189:14:-;1187:12;:10;:12::i;:::-;1176:23;;:7;:5;:7::i;:::-;:23;;;1168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1945:1:::1;1925:22;;:8;:22;;;;1917:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2000:19;2010:8;2000:9;:19::i;:::-;1837:189:::0;:::o;905:222:6:-;1007:4;1045:35;1030:50;;;:11;:50;;;;:90;;;;1084:36;1108:11;1084:23;:36::i;:::-;1030:90;1023:97;;905:222;;;:::o;586:96:1:-;639:7;665:10;658:17;;586:96;:::o;1797:115:15:-;1346:8;:6;:8::i;:::-;1345:9;1337:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1866:4:::1;1856:7;;:14;;;;;;;;;;;;;;;;;;1885:20;1892:12;:10;:12::i;:::-;1885:20;;;;;;:::i;:::-;;;;;;;;1797:115::o:0;2044:117::-;1611:8;:6;:8::i;:::-;1603:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;2112:5:::1;2102:7;;:15;;;;;;;;;;;;;;;;;;2132:22;2141:12;:10;:12::i;:::-;2132:22;;;;;;:::i;:::-;;;;;;;;2044:117::o:0;7143:125:4:-;7208:4;7259:1;7231:30;;:7;:16;7239:7;7231:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7224:37;;7143:125;;;:::o;10994:171::-;11095:2;11068:15;:24;11084:7;11068:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11150:7;11146:2;11112:46;;11121:23;11136:7;11121:14;:23::i;:::-;11112:46;;;;;;;;;;;;10994:171;;:::o;7426:344::-;7519:4;7543:16;7551:7;7543;:16::i;:::-;7535:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7618:13;7634:23;7649:7;7634:14;:23::i;:::-;7618:39;;7686:5;7675:16;;:7;:16;;;:51;;;;7719:7;7695:31;;:20;7707:7;7695:11;:20::i;:::-;:31;;;7675:51;:87;;;;7730:32;7747:5;7754:7;7730:16;:32::i;:::-;7675:87;7667:96;;;7426:344;;;;:::o;10323:560::-;10477:4;10450:31;;:23;10465:7;10450:14;:23::i;:::-;:31;;;10442:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10559:1;10545:16;;:2;:16;;;;10537:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10613:39;10634:4;10640:2;10644:7;10613:20;:39::i;:::-;10714:29;10731:1;10735:7;10714:8;:29::i;:::-;10773:1;10754:9;:15;10764:4;10754:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10801:1;10784:9;:13;10794:2;10784:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10831:2;10812:7;:16;10820:7;10812:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10868:7;10864:2;10849:27;;10858:4;10849:27;;;;;;;;;;;;10323:560;;;:::o;3382:96:16:-;3440:7;3470:1;3466;:5;;;;:::i;:::-;3459:12;;3382:96;;;;:::o;1504:102:13:-;1551:4;1574:25;:15;:23;:25::i;:::-;1567:32;;1504:102;:::o;3551:182::-;3606:7;3616:14;:12;:14::i;:::-;3606:24;;3640:27;:15;:25;:27::i;:::-;3677:18;3687:3;3692:2;3677:9;:18::i;:::-;3723:2;3710:16;;;;;;;;;;3551:182;;:::o;9651:348:4:-;9710:13;9726:23;9741:7;9726:14;:23::i;:::-;9710:39;;9760:48;9781:5;9796:1;9800:7;9760:20;:48::i;:::-;9846:29;9863:1;9867:7;9846:8;:29::i;:::-;9906:1;9886:9;:16;9896:5;9886:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;9924:7;:16;9932:7;9924:16;;;;;;;;;;;;9917:23;;;;;;;;;;;9984:7;9980:1;9956:36;;9965:5;9956:36;;;;;;;;;;;;9651:348;;:::o;6484:120:13:-;6570:8;6562:26;;:35;6589:7;6562:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6484:120;;:::o;2032:169:14:-;2087:16;2106:6;;;;;;;;;;;2087:25;;2131:8;2122:6;;:17;;;;;;;;;;;;;;;;;;2185:8;2154:40;;2175:8;2154:40;;;;;;;;;;;;2032:169;;:::o;6301:177:13:-;6374:12;6392:8;:13;;6413:7;6392:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6373:52;;;6443:7;6435:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;6301:177;;;:::o;3039:96:16:-;3097:7;3127:1;3123;:5;;;;:::i;:::-;3116:12;;3039:96;;;;:::o;6533:307:4:-;6684:28;6694:4;6700:2;6704:7;6684:9;:28::i;:::-;6730:48;6753:4;6759:2;6763:7;6772:5;6730:22;:48::i;:::-;6722:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6533:307;;;;:::o;4518:111:13:-;4578:13;4610:12;4603:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4518:111;:::o;275:703:17:-;331:13;557:1;548:5;:10;544:51;;;574:10;;;;;;;;;;;;;;;;;;;;;544:51;604:12;619:5;604:20;;634:14;658:75;673:1;665:4;:9;658:75;;690:8;;;;;:::i;:::-;;;;720:2;712:10;;;;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;742:39;;791:150;807:1;798:5;:10;791:150;;834:1;824:11;;;;;:::i;:::-;;;900:2;892:5;:10;;;;:::i;:::-;879:2;:24;;;;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;928:2;919:11;;;;;:::i;:::-;;;791:150;;;964:6;950:21;;;;;275:703;;;;:::o;1417:300:4:-;1519:4;1569:25;1554:40;;;:11;:40;;;;:104;;;;1625:33;1610:48;;;:11;:48;;;;1554:104;:156;;;;1674:36;1698:11;1674:23;:36::i;:::-;1554:156;1535:175;;1417:300;;;:::o;7008:233:13:-;7189:45;7216:4;7222:2;7226:7;7189:26;:45::i;:::-;7008:233;;;:::o;773:112:2:-;838:7;864;:14;;;857:21;;773:112;;;:::o;891:123::-;996:1;978:7;:14;;;:19;;;;;;;;;;;891:123;:::o;8100:108:4:-;8175:26;8185:2;8189:7;8175:26;;;;;;;;;;;;:9;:26::i;:::-;8100:108;;:::o;11718:782::-;11868:4;11888:15;:2;:13;;;:15::i;:::-;11884:610;;;11939:2;11923:36;;;11960:12;:10;:12::i;:::-;11974:4;11980:7;11989:5;11923:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;11919:523;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12183:1;12166:6;:13;:18;12162:266;;;12208:60;;;;;;;;;;:::i;:::-;;;;;;;;12162:266;12380:6;12374:13;12365:6;12361:2;12357:15;12350:38;11919:523;12055:45;;;12045:55;;;:6;:55;;;;12038:62;;;;;11884:610;12479:4;12472:11;;11718:782;;;;;;;:::o;761:155:3:-;846:4;884:25;869:40;;;:11;:40;;;;862:47;;761:155;;;:::o;604:319:7:-;743:45;770:4;776:2;780:7;743:26;:45::i;:::-;818:7;:5;:7::i;:::-;802:23;;:12;:10;:12::i;:::-;:23;;;798:119;;850:8;:6;:8::i;:::-;849:9;841:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;798:119;604:319;;;:::o;8429:311:4:-;8554:18;8560:2;8564:7;8554:5;:18::i;:::-;8603:54;8634:1;8638:2;8642:7;8651:5;8603:22;:54::i;:::-;8582:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;8429:311;;;:::o;718:377:0:-;778:4;981:12;1046:7;1034:20;1026:28;;1087:1;1080:4;:8;1073:15;;;718:377;;;:::o;2539:572:6:-;2678:45;2705:4;2711:2;2715:7;2678:26;:45::i;:::-;2754:1;2738:18;;:4;:18;;;2734:183;;;2772:40;2804:7;2772:31;:40::i;:::-;2734:183;;;2841:2;2833:10;;:4;:10;;;2829:88;;2859:47;2892:4;2898:7;2859:32;:47::i;:::-;2829:88;2734:183;2944:1;2930:16;;:2;:16;;;2926:179;;;2962:45;2999:7;2962:36;:45::i;:::-;2926:179;;;3034:4;3028:10;;:2;:10;;;3024:81;;3054:40;3082:2;3086:7;3054:27;:40::i;:::-;3024:81;2926:179;2539:572;;;:::o;9062:372:4:-;9155:1;9141:16;;:2;:16;;;;9133:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9213:16;9221:7;9213;:16::i;:::-;9212:17;9204:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9273:45;9302:1;9306:2;9310:7;9273:20;:45::i;:::-;9346:1;9329:9;:13;9339:2;9329:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9376:2;9357:7;:16;9365:7;9357:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9419:7;9415:2;9394:33;;9411:1;9394:33;;;;;;;;;;;;9062:372;;:::o;13056:122::-;;;;:::o;3817:161:6:-;3920:10;:17;;;;3893:15;:24;3909:7;3893:24;;;;;;;;;;;:44;;;;3947:10;3963:7;3947:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3817:161;:::o;4595:970::-;4857:22;4907:1;4882:22;4899:4;4882:16;:22::i;:::-;:26;;;;:::i;:::-;4857:51;;4918:18;4939:17;:26;4957:7;4939:26;;;;;;;;;;;;4918:47;;5083:14;5069:10;:28;5065:323;;5113:19;5135:12;:18;5148:4;5135:18;;;;;;;;;;;;;;;:34;5154:14;5135:34;;;;;;;;;;;;5113:56;;5217:11;5184:12;:18;5197:4;5184:18;;;;;;;;;;;;;;;:30;5203:10;5184:30;;;;;;;;;;;:44;;;;5333:10;5300:17;:30;5318:11;5300:30;;;;;;;;;;;:43;;;;5065:323;;5481:17;:26;5499:7;5481:26;;;;;;;;;;;5474:33;;;5524:12;:18;5537:4;5524:18;;;;;;;;;;;;;;;:34;5543:14;5524:34;;;;;;;;;;;5517:41;;;4595:970;;;;:::o;5853:1061::-;6102:22;6147:1;6127:10;:17;;;;:21;;;;:::i;:::-;6102:46;;6158:18;6179:15;:24;6195:7;6179:24;;;;;;;;;;;;6158:45;;6525:19;6547:10;6558:14;6547:26;;;;;;;;;;;;;;;;;;;;;;;;6525:48;;6609:11;6584:10;6595;6584:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;6719:10;6688:15;:28;6704:11;6688:28;;;;;;;;;;;:41;;;;6857:15;:24;6873:7;6857:24;;;;;;;;;;;6850:31;;;6891:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5853:1061;;;;:::o;3405:217::-;3489:14;3506:20;3523:2;3506:16;:20::i;:::-;3489:37;;3563:7;3536:12;:16;3549:2;3536:16;;;;;;;;;;;;;;;:24;3553:6;3536:24;;;;;;;;;;;:34;;;;3609:6;3580:17;:26;3598:7;3580:26;;;;;;;;;;;:35;;;;3405:217;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:622:18:-;;145:80;160:64;217:6;160:64;:::i;:::-;145:80;:::i;:::-;136:89;;245:5;273:6;266:5;259:21;299:4;292:5;288:16;281:23;;324:6;374:3;366:4;358:6;354:17;349:3;345:27;342:36;339:2;;;391:1;388;381:12;339:2;419:1;404:236;429:6;426:1;423:13;404:236;;;496:3;524:37;557:3;545:10;524:37;:::i;:::-;519:3;512:50;591:4;586:3;582:14;575:21;;625:4;620:3;616:14;609:21;;464:176;451:1;448;444:9;439:14;;404:236;;;408:14;126:520;;;;;;;:::o;652:342::-;;754:64;769:48;810:6;769:48;:::i;:::-;754:64;:::i;:::-;745:73;;841:6;834:5;827:21;879:4;872:5;868:16;917:3;908:6;903:3;899:16;896:25;893:2;;;934:1;931;924:12;893:2;947:41;981:6;976:3;971;947:41;:::i;:::-;735:259;;;;;;:::o;1000:344::-;;1103:65;1118:49;1160:6;1118:49;:::i;:::-;1103:65;:::i;:::-;1094:74;;1191:6;1184:5;1177:21;1229:4;1222:5;1218:16;1267:3;1258:6;1253:3;1249:16;1246:25;1243:2;;;1284:1;1281;1274:12;1243:2;1297:41;1331:6;1326:3;1321;1297:41;:::i;:::-;1084:260;;;;;;:::o;1350:139::-;;1434:6;1421:20;1412:29;;1450:33;1477:5;1450:33;:::i;:::-;1402:87;;;;:::o;1512:303::-;;1632:3;1625:4;1617:6;1613:17;1609:27;1599:2;;1650:1;1647;1640:12;1599:2;1690:6;1677:20;1715:94;1805:3;1797:6;1790:4;1782:6;1778:17;1715:94;:::i;:::-;1706:103;;1589:226;;;;;:::o;1821:133::-;;1902:6;1889:20;1880:29;;1918:30;1942:5;1918:30;:::i;:::-;1870:84;;;;:::o;1960:137::-;;2043:6;2030:20;2021:29;;2059:32;2085:5;2059:32;:::i;:::-;2011:86;;;;:::o;2103:141::-;;2190:6;2184:13;2175:22;;2206:32;2232:5;2206:32;:::i;:::-;2165:79;;;;:::o;2263:271::-;;2367:3;2360:4;2352:6;2348:17;2344:27;2334:2;;2385:1;2382;2375:12;2334:2;2425:6;2412:20;2450:78;2524:3;2516:6;2509:4;2501:6;2497:17;2450:78;:::i;:::-;2441:87;;2324:210;;;;;:::o;2554:273::-;;2659:3;2652:4;2644:6;2640:17;2636:27;2626:2;;2677:1;2674;2667:12;2626:2;2717:6;2704:20;2742:79;2817:3;2809:6;2802:4;2794:6;2790:17;2742:79;:::i;:::-;2733:88;;2616:211;;;;;:::o;2833:139::-;;2917:6;2904:20;2895:29;;2933:33;2960:5;2933:33;:::i;:::-;2885:87;;;;:::o;2978:262::-;;3086:2;3074:9;3065:7;3061:23;3057:32;3054:2;;;3102:1;3099;3092:12;3054:2;3145:1;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3116:117;3044:196;;;;:::o;3246:407::-;;;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3387:1;3384;3377:12;3339:2;3430:1;3455:53;3500:7;3491:6;3480:9;3476:22;3455:53;:::i;:::-;3445:63;;3401:117;3557:2;3583:53;3628:7;3619:6;3608:9;3604:22;3583:53;:::i;:::-;3573:63;;3528:118;3329:324;;;;;:::o;3659:552::-;;;;3801:2;3789:9;3780:7;3776:23;3772:32;3769:2;;;3817:1;3814;3807:12;3769:2;3860:1;3885:53;3930:7;3921:6;3910:9;3906:22;3885:53;:::i;:::-;3875:63;;3831:117;3987:2;4013:53;4058:7;4049:6;4038:9;4034:22;4013:53;:::i;:::-;4003:63;;3958:118;4115:2;4141:53;4186:7;4177:6;4166:9;4162:22;4141:53;:::i;:::-;4131:63;;4086:118;3759:452;;;;;:::o;4217:809::-;;;;;4385:3;4373:9;4364:7;4360:23;4356:33;4353:2;;;4402:1;4399;4392:12;4353:2;4445:1;4470:53;4515:7;4506:6;4495:9;4491:22;4470:53;:::i;:::-;4460:63;;4416:117;4572:2;4598:53;4643:7;4634:6;4623:9;4619:22;4598:53;:::i;:::-;4588:63;;4543:118;4700:2;4726:53;4771:7;4762:6;4751:9;4747:22;4726:53;:::i;:::-;4716:63;;4671:118;4856:2;4845:9;4841:18;4828:32;4887:18;4879:6;4876:30;4873:2;;;4919:1;4916;4909:12;4873:2;4947:62;5001:7;4992:6;4981:9;4977:22;4947:62;:::i;:::-;4937:72;;4799:220;4343:683;;;;;;;:::o;5032:401::-;;;5154:2;5142:9;5133:7;5129:23;5125:32;5122:2;;;5170:1;5167;5160:12;5122:2;5213:1;5238:53;5283:7;5274:6;5263:9;5259:22;5238:53;:::i;:::-;5228:63;;5184:117;5340:2;5366:50;5408:7;5399:6;5388:9;5384:22;5366:50;:::i;:::-;5356:60;;5311:115;5112:321;;;;;:::o;5439:407::-;;;5564:2;5552:9;5543:7;5539:23;5535:32;5532:2;;;5580:1;5577;5570:12;5532:2;5623:1;5648:53;5693:7;5684:6;5673:9;5669:22;5648:53;:::i;:::-;5638:63;;5594:117;5750:2;5776:53;5821:7;5812:6;5801:9;5797:22;5776:53;:::i;:::-;5766:63;;5721:118;5522:324;;;;;:::o;5852:405::-;;5985:2;5973:9;5964:7;5960:23;5956:32;5953:2;;;6001:1;5998;5991:12;5953:2;6072:1;6061:9;6057:17;6044:31;6102:18;6094:6;6091:30;6088:2;;;6134:1;6131;6124:12;6088:2;6162:78;6232:7;6223:6;6212:9;6208:22;6162:78;:::i;:::-;6152:88;;6015:235;5943:314;;;;:::o;6263:256::-;;6368:2;6356:9;6347:7;6343:23;6339:32;6336:2;;;6384:1;6381;6374:12;6336:2;6427:1;6452:50;6494:7;6485:6;6474:9;6470:22;6452:50;:::i;:::-;6442:60;;6398:114;6326:193;;;;:::o;6525:260::-;;6632:2;6620:9;6611:7;6607:23;6603:32;6600:2;;;6648:1;6645;6638:12;6600:2;6691:1;6716:52;6760:7;6751:6;6740:9;6736:22;6716:52;:::i;:::-;6706:62;;6662:116;6590:195;;;;:::o;6791:282::-;;6909:2;6897:9;6888:7;6884:23;6880:32;6877:2;;;6925:1;6922;6915:12;6877:2;6968:1;6993:63;7048:7;7039:6;7028:9;7024:22;6993:63;:::i;:::-;6983:73;;6939:127;6867:206;;;;:::o;7079:375::-;;7197:2;7185:9;7176:7;7172:23;7168:32;7165:2;;;7213:1;7210;7203:12;7165:2;7284:1;7273:9;7269:17;7256:31;7314:18;7306:6;7303:30;7300:2;;;7346:1;7343;7336:12;7300:2;7374:63;7429:7;7420:6;7409:9;7405:22;7374:63;:::i;:::-;7364:73;;7227:220;7155:299;;;;:::o;7460:262::-;;7568:2;7556:9;7547:7;7543:23;7539:32;7536:2;;;7584:1;7581;7574:12;7536:2;7627:1;7652:53;7697:7;7688:6;7677:9;7673:22;7652:53;:::i;:::-;7642:63;;7598:117;7526:196;;;;:::o;7728:179::-;;7818:46;7860:3;7852:6;7818:46;:::i;:::-;7896:4;7891:3;7887:14;7873:28;;7808:99;;;;:::o;7913:118::-;8000:24;8018:5;8000:24;:::i;:::-;7995:3;7988:37;7978:53;;:::o;8067:732::-;;8215:54;8263:5;8215:54;:::i;:::-;8285:86;8364:6;8359:3;8285:86;:::i;:::-;8278:93;;8395:56;8445:5;8395:56;:::i;:::-;8474:7;8505:1;8490:284;8515:6;8512:1;8509:13;8490:284;;;8591:6;8585:13;8618:63;8677:3;8662:13;8618:63;:::i;:::-;8611:70;;8704:60;8757:6;8704:60;:::i;:::-;8694:70;;8550:224;8537:1;8534;8530:9;8525:14;;8490:284;;;8494:14;8790:3;8783:10;;8191:608;;;;;;;:::o;8805:109::-;8886:21;8901:5;8886:21;:::i;:::-;8881:3;8874:34;8864:50;;:::o;8920:360::-;;9034:38;9066:5;9034:38;:::i;:::-;9088:70;9151:6;9146:3;9088:70;:::i;:::-;9081:77;;9167:52;9212:6;9207:3;9200:4;9193:5;9189:16;9167:52;:::i;:::-;9244:29;9266:6;9244:29;:::i;:::-;9239:3;9235:39;9228:46;;9010:270;;;;;:::o;9286:364::-;;9402:39;9435:5;9402:39;:::i;:::-;9457:71;9521:6;9516:3;9457:71;:::i;:::-;9450:78;;9537:52;9582:6;9577:3;9570:4;9563:5;9559:16;9537:52;:::i;:::-;9614:29;9636:6;9614:29;:::i;:::-;9609:3;9605:39;9598:46;;9378:272;;;;;:::o;9656:377::-;;9790:39;9823:5;9790:39;:::i;:::-;9845:89;9927:6;9922:3;9845:89;:::i;:::-;9838:96;;9943:52;9988:6;9983:3;9976:4;9969:5;9965:16;9943:52;:::i;:::-;10020:6;10015:3;10011:16;10004:23;;9766:267;;;;;:::o;10039:375::-;;10202:67;10266:2;10261:3;10202:67;:::i;:::-;10195:74;;10299:34;10295:1;10290:3;10286:11;10279:55;10365:13;10360:2;10355:3;10351:12;10344:35;10405:2;10400:3;10396:12;10389:19;;10185:229;;;:::o;10420:318::-;;10583:67;10647:2;10642:3;10583:67;:::i;:::-;10576:74;;10680:22;10676:1;10671:3;10667:11;10660:43;10729:2;10724:3;10720:12;10713:19;;10566:172;;;:::o;10744:312::-;;10907:67;10971:2;10966:3;10907:67;:::i;:::-;10900:74;;11004:16;11000:1;10995:3;10991:11;10984:37;11047:2;11042:3;11038:12;11031:19;;10890:166;;;:::o;11062:325::-;;11225:67;11289:2;11284:3;11225:67;:::i;:::-;11218:74;;11322:29;11318:1;11313:3;11309:11;11302:50;11378:2;11373:3;11369:12;11362:19;;11208:179;;;:::o;11393:375::-;;11556:67;11620:2;11615:3;11556:67;:::i;:::-;11549:74;;11653:34;11649:1;11644:3;11640:11;11633:55;11719:13;11714:2;11709:3;11705:12;11698:35;11759:2;11754:3;11750:12;11743:19;;11539:229;;;:::o;11774:382::-;;11937:67;12001:2;11996:3;11937:67;:::i;:::-;11930:74;;12034:34;12030:1;12025:3;12021:11;12014:55;12100:20;12095:2;12090:3;12086:12;12079:42;12147:2;12142:3;12138:12;12131:19;;11920:236;;;:::o;12162:370::-;;12325:67;12389:2;12384:3;12325:67;:::i;:::-;12318:74;;12422:34;12418:1;12413:3;12409:11;12402:55;12488:8;12483:2;12478:3;12474:12;12467:30;12523:2;12518:3;12514:12;12507:19;;12308:224;;;:::o;12538:326::-;;12701:67;12765:2;12760:3;12701:67;:::i;:::-;12694:74;;12798:30;12794:1;12789:3;12785:11;12778:51;12855:2;12850:3;12846:12;12839:19;;12684:180;;;:::o;12870:330::-;;13033:67;13097:2;13092:3;13033:67;:::i;:::-;13026:74;;13130:34;13126:1;13121:3;13117:11;13110:55;13191:2;13186:3;13182:12;13175:19;;13016:184;;;:::o;13206:368::-;;13369:67;13433:2;13428:3;13369:67;:::i;:::-;13362:74;;13466:34;13462:1;13457:3;13453:11;13446:55;13532:6;13527:2;13522:3;13518:12;13511:28;13565:2;13560:3;13556:12;13549:19;;13352:222;;;:::o;13580:323::-;;13743:67;13807:2;13802:3;13743:67;:::i;:::-;13736:74;;13840:27;13836:1;13831:3;13827:11;13820:48;13894:2;13889:3;13885:12;13878:19;;13726:177;;;:::o;13909:306::-;;14072:66;14136:1;14131:3;14072:66;:::i;:::-;14065:73;;14168:11;14164:1;14159:3;14155:11;14148:32;14206:2;14201:3;14197:12;14190:19;;14055:160;;;:::o;14221:376::-;;14384:67;14448:2;14443:3;14384:67;:::i;:::-;14377:74;;14481:34;14477:1;14472:3;14468:11;14461:55;14547:14;14542:2;14537:3;14533:12;14526:36;14588:2;14583:3;14579:12;14572:19;;14367:230;;;:::o;14603:314::-;;14766:67;14830:2;14825:3;14766:67;:::i;:::-;14759:74;;14863:18;14859:1;14854:3;14850:11;14843:39;14908:2;14903:3;14899:12;14892:19;;14749:168;;;:::o;14923:388::-;;15086:67;15150:2;15145:3;15086:67;:::i;:::-;15079:74;;15183:34;15179:1;15174:3;15170:11;15163:55;15249:26;15244:2;15239:3;15235:12;15228:48;15302:2;15297:3;15293:12;15286:19;;15069:242;;;:::o;15317:374::-;;15480:67;15544:2;15539:3;15480:67;:::i;:::-;15473:74;;15577:34;15573:1;15568:3;15564:11;15557:55;15643:12;15638:2;15633:3;15629:12;15622:34;15682:2;15677:3;15673:12;15666:19;;15463:228;;;:::o;15697:373::-;;15860:67;15924:2;15919:3;15860:67;:::i;:::-;15853:74;;15957:34;15953:1;15948:3;15944:11;15937:55;16023:11;16018:2;16013:3;16009:12;16002:33;16061:2;16056:3;16052:12;16045:19;;15843:227;;;:::o;16076:330::-;;16239:67;16303:2;16298:3;16239:67;:::i;:::-;16232:74;;16336:34;16332:1;16327:3;16323:11;16316:55;16397:2;16392:3;16388:12;16381:19;;16222:184;;;:::o;16412:305::-;;16575:66;16639:1;16634:3;16575:66;:::i;:::-;16568:73;;16671:10;16667:1;16662:3;16658:11;16651:31;16708:2;16703:3;16699:12;16692:19;;16558:159;;;:::o;16723:376::-;;16886:67;16950:2;16945:3;16886:67;:::i;:::-;16879:74;;16983:34;16979:1;16974:3;16970:11;16963:55;17049:14;17044:2;17039:3;17035:12;17028:36;17090:2;17085:3;17081:12;17074:19;;16869:230;;;:::o;17105:330::-;;17268:67;17332:2;17327:3;17268:67;:::i;:::-;17261:74;;17365:34;17361:1;17356:3;17352:11;17345:55;17426:2;17421:3;17417:12;17410:19;;17251:184;;;:::o;17441:373::-;;17604:67;17668:2;17663:3;17604:67;:::i;:::-;17597:74;;17701:34;17697:1;17692:3;17688:11;17681:55;17767:11;17762:2;17757:3;17753:12;17746:33;17805:2;17800:3;17796:12;17789:19;;17587:227;;;:::o;17820:379::-;;17983:67;18047:2;18042:3;17983:67;:::i;:::-;17976:74;;18080:34;18076:1;18071:3;18067:11;18060:55;18146:17;18141:2;18136:3;18132:12;18125:39;18190:2;18185:3;18181:12;18174:19;;17966:233;;;:::o;18205:315::-;;18368:67;18432:2;18427:3;18368:67;:::i;:::-;18361:74;;18465:19;18461:1;18456:3;18452:11;18445:40;18511:2;18506:3;18502:12;18495:19;;18351:169;;;:::o;18526:365::-;;18689:67;18753:2;18748:3;18689:67;:::i;:::-;18682:74;;18786:34;18782:1;18777:3;18773:11;18766:55;18852:3;18847:2;18842:3;18838:12;18831:25;18882:2;18877:3;18873:12;18866:19;;18672:219;;;:::o;18897:297::-;;19077:83;19158:1;19153:3;19077:83;:::i;:::-;19070:90;;19186:1;19181:3;19177:11;19170:18;;19060:134;;;:::o;19200:314::-;;19363:67;19427:2;19422:3;19363:67;:::i;:::-;19356:74;;19460:18;19456:1;19451:3;19447:11;19440:39;19505:2;19500:3;19496:12;19489:19;;19346:168;;;:::o;19520:381::-;;19683:67;19747:2;19742:3;19683:67;:::i;:::-;19676:74;;19780:34;19776:1;19771:3;19767:11;19760:55;19846:19;19841:2;19836:3;19832:12;19825:41;19892:2;19887:3;19883:12;19876:19;;19666:235;;;:::o;19907:376::-;;20070:67;20134:2;20129:3;20070:67;:::i;:::-;20063:74;;20167:34;20163:1;20158:3;20154:11;20147:55;20233:14;20228:2;20223:3;20219:12;20212:36;20274:2;20269:3;20265:12;20258:19;;20053:230;;;:::o;20289:380::-;;20452:67;20516:2;20511:3;20452:67;:::i;:::-;20445:74;;20549:34;20545:1;20540:3;20536:11;20529:55;20615:18;20610:2;20605:3;20601:12;20594:40;20660:2;20655:3;20651:12;20644:19;;20435:234;;;:::o;20675:108::-;20752:24;20770:5;20752:24;:::i;:::-;20747:3;20740:37;20730:53;;:::o;20789:118::-;20876:24;20894:5;20876:24;:::i;:::-;20871:3;20864:37;20854:53;;:::o;20913:435::-;;21115:95;21206:3;21197:6;21115:95;:::i;:::-;21108:102;;21227:95;21318:3;21309:6;21227:95;:::i;:::-;21220:102;;21339:3;21332:10;;21097:251;;;;;:::o;21354:379::-;;21560:147;21703:3;21560:147;:::i;:::-;21553:154;;21724:3;21717:10;;21542:191;;;:::o;21739:222::-;;21870:2;21859:9;21855:18;21847:26;;21883:71;21951:1;21940:9;21936:17;21927:6;21883:71;:::i;:::-;21837:124;;;;:::o;21967:640::-;;22200:3;22189:9;22185:19;22177:27;;22214:71;22282:1;22271:9;22267:17;22258:6;22214:71;:::i;:::-;22295:72;22363:2;22352:9;22348:18;22339:6;22295:72;:::i;:::-;22377;22445:2;22434:9;22430:18;22421:6;22377:72;:::i;:::-;22496:9;22490:4;22486:20;22481:2;22470:9;22466:18;22459:48;22524:76;22595:4;22586:6;22524:76;:::i;:::-;22516:84;;22167:440;;;;;;;:::o;22613:373::-;;22794:2;22783:9;22779:18;22771:26;;22843:9;22837:4;22833:20;22829:1;22818:9;22814:17;22807:47;22871:108;22974:4;22965:6;22871:108;:::i;:::-;22863:116;;22761:225;;;;:::o;22992:210::-;;23117:2;23106:9;23102:18;23094:26;;23130:65;23192:1;23181:9;23177:17;23168:6;23130:65;:::i;:::-;23084:118;;;;:::o;23208:313::-;;23359:2;23348:9;23344:18;23336:26;;23408:9;23402:4;23398:20;23394:1;23383:9;23379:17;23372:47;23436:78;23509:4;23500:6;23436:78;:::i;:::-;23428:86;;23326:195;;;;:::o;23527:419::-;;23731:2;23720:9;23716:18;23708:26;;23780:9;23774:4;23770:20;23766:1;23755:9;23751:17;23744:47;23808:131;23934:4;23808:131;:::i;:::-;23800:139;;23698:248;;;:::o;23952:419::-;;24156:2;24145:9;24141:18;24133:26;;24205:9;24199:4;24195:20;24191:1;24180:9;24176:17;24169:47;24233:131;24359:4;24233:131;:::i;:::-;24225:139;;24123:248;;;:::o;24377:419::-;;24581:2;24570:9;24566:18;24558:26;;24630:9;24624:4;24620:20;24616:1;24605:9;24601:17;24594:47;24658:131;24784:4;24658:131;:::i;:::-;24650:139;;24548:248;;;:::o;24802:419::-;;25006:2;24995:9;24991:18;24983:26;;25055:9;25049:4;25045:20;25041:1;25030:9;25026:17;25019:47;25083:131;25209:4;25083:131;:::i;:::-;25075:139;;24973:248;;;:::o;25227:419::-;;25431:2;25420:9;25416:18;25408:26;;25480:9;25474:4;25470:20;25466:1;25455:9;25451:17;25444:47;25508:131;25634:4;25508:131;:::i;:::-;25500:139;;25398:248;;;:::o;25652:419::-;;25856:2;25845:9;25841:18;25833:26;;25905:9;25899:4;25895:20;25891:1;25880:9;25876:17;25869:47;25933:131;26059:4;25933:131;:::i;:::-;25925:139;;25823:248;;;:::o;26077:419::-;;26281:2;26270:9;26266:18;26258:26;;26330:9;26324:4;26320:20;26316:1;26305:9;26301:17;26294:47;26358:131;26484:4;26358:131;:::i;:::-;26350:139;;26248:248;;;:::o;26502:419::-;;26706:2;26695:9;26691:18;26683:26;;26755:9;26749:4;26745:20;26741:1;26730:9;26726:17;26719:47;26783:131;26909:4;26783:131;:::i;:::-;26775:139;;26673:248;;;:::o;26927:419::-;;27131:2;27120:9;27116:18;27108:26;;27180:9;27174:4;27170:20;27166:1;27155:9;27151:17;27144:47;27208:131;27334:4;27208:131;:::i;:::-;27200:139;;27098:248;;;:::o;27352:419::-;;27556:2;27545:9;27541:18;27533:26;;27605:9;27599:4;27595:20;27591:1;27580:9;27576:17;27569:47;27633:131;27759:4;27633:131;:::i;:::-;27625:139;;27523:248;;;:::o;27777:419::-;;27981:2;27970:9;27966:18;27958:26;;28030:9;28024:4;28020:20;28016:1;28005:9;28001:17;27994:47;28058:131;28184:4;28058:131;:::i;:::-;28050:139;;27948:248;;;:::o;28202:419::-;;28406:2;28395:9;28391:18;28383:26;;28455:9;28449:4;28445:20;28441:1;28430:9;28426:17;28419:47;28483:131;28609:4;28483:131;:::i;:::-;28475:139;;28373:248;;;:::o;28627:419::-;;28831:2;28820:9;28816:18;28808:26;;28880:9;28874:4;28870:20;28866:1;28855:9;28851:17;28844:47;28908:131;29034:4;28908:131;:::i;:::-;28900:139;;28798:248;;;:::o;29052:419::-;;29256:2;29245:9;29241:18;29233:26;;29305:9;29299:4;29295:20;29291:1;29280:9;29276:17;29269:47;29333:131;29459:4;29333:131;:::i;:::-;29325:139;;29223:248;;;:::o;29477:419::-;;29681:2;29670:9;29666:18;29658:26;;29730:9;29724:4;29720:20;29716:1;29705:9;29701:17;29694:47;29758:131;29884:4;29758:131;:::i;:::-;29750:139;;29648:248;;;:::o;29902:419::-;;30106:2;30095:9;30091:18;30083:26;;30155:9;30149:4;30145:20;30141:1;30130:9;30126:17;30119:47;30183:131;30309:4;30183:131;:::i;:::-;30175:139;;30073:248;;;:::o;30327:419::-;;30531:2;30520:9;30516:18;30508:26;;30580:9;30574:4;30570:20;30566:1;30555:9;30551:17;30544:47;30608:131;30734:4;30608:131;:::i;:::-;30600:139;;30498:248;;;:::o;30752:419::-;;30956:2;30945:9;30941:18;30933:26;;31005:9;30999:4;30995:20;30991:1;30980:9;30976:17;30969:47;31033:131;31159:4;31033:131;:::i;:::-;31025:139;;30923:248;;;:::o;31177:419::-;;31381:2;31370:9;31366:18;31358:26;;31430:9;31424:4;31420:20;31416:1;31405:9;31401:17;31394:47;31458:131;31584:4;31458:131;:::i;:::-;31450:139;;31348:248;;;:::o;31602:419::-;;31806:2;31795:9;31791:18;31783:26;;31855:9;31849:4;31845:20;31841:1;31830:9;31826:17;31819:47;31883:131;32009:4;31883:131;:::i;:::-;31875:139;;31773:248;;;:::o;32027:419::-;;32231:2;32220:9;32216:18;32208:26;;32280:9;32274:4;32270:20;32266:1;32255:9;32251:17;32244:47;32308:131;32434:4;32308:131;:::i;:::-;32300:139;;32198:248;;;:::o;32452:419::-;;32656:2;32645:9;32641:18;32633:26;;32705:9;32699:4;32695:20;32691:1;32680:9;32676:17;32669:47;32733:131;32859:4;32733:131;:::i;:::-;32725:139;;32623:248;;;:::o;32877:419::-;;33081:2;33070:9;33066:18;33058:26;;33130:9;33124:4;33120:20;33116:1;33105:9;33101:17;33094:47;33158:131;33284:4;33158:131;:::i;:::-;33150:139;;33048:248;;;:::o;33302:419::-;;33506:2;33495:9;33491:18;33483:26;;33555:9;33549:4;33545:20;33541:1;33530:9;33526:17;33519:47;33583:131;33709:4;33583:131;:::i;:::-;33575:139;;33473:248;;;:::o;33727:419::-;;33931:2;33920:9;33916:18;33908:26;;33980:9;33974:4;33970:20;33966:1;33955:9;33951:17;33944:47;34008:131;34134:4;34008:131;:::i;:::-;34000:139;;33898:248;;;:::o;34152:419::-;;34356:2;34345:9;34341:18;34333:26;;34405:9;34399:4;34395:20;34391:1;34380:9;34376:17;34369:47;34433:131;34559:4;34433:131;:::i;:::-;34425:139;;34323:248;;;:::o;34577:419::-;;34781:2;34770:9;34766:18;34758:26;;34830:9;34824:4;34820:20;34816:1;34805:9;34801:17;34794:47;34858:131;34984:4;34858:131;:::i;:::-;34850:139;;34748:248;;;:::o;35002:419::-;;35206:2;35195:9;35191:18;35183:26;;35255:9;35249:4;35245:20;35241:1;35230:9;35226:17;35219:47;35283:131;35409:4;35283:131;:::i;:::-;35275:139;;35173:248;;;:::o;35427:419::-;;35631:2;35620:9;35616:18;35608:26;;35680:9;35674:4;35670:20;35666:1;35655:9;35651:17;35644:47;35708:131;35834:4;35708:131;:::i;:::-;35700:139;;35598:248;;;:::o;35852:222::-;;35983:2;35972:9;35968:18;35960:26;;35996:71;36064:1;36053:9;36049:17;36040:6;35996:71;:::i;:::-;35950:124;;;;:::o;36080:283::-;;36146:2;36140:9;36130:19;;36188:4;36180:6;36176:17;36295:6;36283:10;36280:22;36259:18;36247:10;36244:34;36241:62;36238:2;;;36306:18;;:::i;:::-;36238:2;36346:10;36342:2;36335:22;36120:243;;;;:::o;36369:311::-;;36536:18;36528:6;36525:30;36522:2;;;36558:18;;:::i;:::-;36522:2;36608:4;36600:6;36596:17;36588:25;;36668:4;36662;36658:15;36650:23;;36451:229;;;:::o;36686:331::-;;36837:18;36829:6;36826:30;36823:2;;;36859:18;;:::i;:::-;36823:2;36944:4;36940:9;36933:4;36925:6;36921:17;36917:33;36909:41;;37005:4;36999;36995:15;36987:23;;36752:265;;;:::o;37023:332::-;;37175:18;37167:6;37164:30;37161:2;;;37197:18;;:::i;:::-;37161:2;37282:4;37278:9;37271:4;37263:6;37259:17;37255:33;37247:41;;37343:4;37337;37333:15;37325:23;;37090:265;;;:::o;37361:132::-;;37451:3;37443:11;;37481:4;37476:3;37472:14;37464:22;;37433:60;;;:::o;37499:114::-;;37600:5;37594:12;37584:22;;37573:40;;;:::o;37619:98::-;;37704:5;37698:12;37688:22;;37677:40;;;:::o;37723:99::-;;37809:5;37803:12;37793:22;;37782:40;;;:::o;37828:113::-;;37930:4;37925:3;37921:14;37913:22;;37903:38;;;:::o;37947:184::-;;38080:6;38075:3;38068:19;38120:4;38115:3;38111:14;38096:29;;38058:73;;;;:::o;38137:168::-;;38254:6;38249:3;38242:19;38294:4;38289:3;38285:14;38270:29;;38232:73;;;;:::o;38311:147::-;;38449:3;38434:18;;38424:34;;;;:::o;38464:169::-;;38582:6;38577:3;38570:19;38622:4;38617:3;38613:14;38598:29;;38560:73;;;;:::o;38639:148::-;;38778:3;38763:18;;38753:34;;;;:::o;38793:305::-;;38852:20;38870:1;38852:20;:::i;:::-;38847:25;;38886:20;38904:1;38886:20;:::i;:::-;38881:25;;39040:1;38972:66;38968:74;38965:1;38962:81;38959:2;;;39046:18;;:::i;:::-;38959:2;39090:1;39087;39083:9;39076:16;;38837:261;;;;:::o;39104:185::-;;39161:20;39179:1;39161:20;:::i;:::-;39156:25;;39195:20;39213:1;39195:20;:::i;:::-;39190:25;;39234:1;39224:2;;39239:18;;:::i;:::-;39224:2;39281:1;39278;39274:9;39269:14;;39146:143;;;;:::o;39295:348::-;;39358:20;39376:1;39358:20;:::i;:::-;39353:25;;39392:20;39410:1;39392:20;:::i;:::-;39387:25;;39580:1;39512:66;39508:74;39505:1;39502:81;39497:1;39490:9;39483:17;39479:105;39476:2;;;39587:18;;:::i;:::-;39476:2;39635:1;39632;39628:9;39617:20;;39343:300;;;;:::o;39649:191::-;;39709:20;39727:1;39709:20;:::i;:::-;39704:25;;39743:20;39761:1;39743:20;:::i;:::-;39738:25;;39782:1;39779;39776:8;39773:2;;;39787:18;;:::i;:::-;39773:2;39832:1;39829;39825:9;39817:17;;39694:146;;;;:::o;39846:96::-;;39912:24;39930:5;39912:24;:::i;:::-;39901:35;;39891:51;;;:::o;39948:90::-;;40025:5;40018:13;40011:21;40000:32;;39990:48;;;:::o;40044:149::-;;40120:66;40113:5;40109:78;40098:89;;40088:105;;;:::o;40199:126::-;;40276:42;40269:5;40265:54;40254:65;;40244:81;;;:::o;40331:77::-;;40397:5;40386:16;;40376:32;;;:::o;40414:154::-;40498:6;40493:3;40488;40475:30;40560:1;40551:6;40546:3;40542:16;40535:27;40465:103;;;:::o;40574:307::-;40642:1;40652:113;40666:6;40663:1;40660:13;40652:113;;;40751:1;40746:3;40742:11;40736:18;40732:1;40727:3;40723:11;40716:39;40688:2;40685:1;40681:10;40676:15;;40652:113;;;40783:6;40780:1;40777:13;40774:2;;;40863:1;40854:6;40849:3;40845:16;40838:27;40774:2;40623:258;;;;:::o;40887:320::-;;40968:1;40962:4;40958:12;40948:22;;41015:1;41009:4;41005:12;41036:18;41026:2;;41092:4;41084:6;41080:17;41070:27;;41026:2;41154;41146:6;41143:14;41123:18;41120:38;41117:2;;;41173:18;;:::i;:::-;41117:2;40938:269;;;;:::o;41213:233::-;;41275:24;41293:5;41275:24;:::i;:::-;41266:33;;41321:66;41314:5;41311:77;41308:2;;;41391:18;;:::i;:::-;41308:2;41438:1;41431:5;41427:13;41420:20;;41256:190;;;:::o;41452:176::-;;41501:20;41519:1;41501:20;:::i;:::-;41496:25;;41535:20;41553:1;41535:20;:::i;:::-;41530:25;;41574:1;41564:2;;41579:18;;:::i;:::-;41564:2;41620:1;41617;41613:9;41608:14;;41486:142;;;;:::o;41634:180::-;41682:77;41679:1;41672:88;41779:4;41776:1;41769:15;41803:4;41800:1;41793:15;41820:180;41868:77;41865:1;41858:88;41965:4;41962:1;41955:15;41989:4;41986:1;41979:15;42006:180;42054:77;42051:1;42044:88;42151:4;42148:1;42141:15;42175:4;42172:1;42165:15;42192:180;42240:77;42237:1;42230:88;42337:4;42334:1;42327:15;42361:4;42358:1;42351:15;42378:102;;42470:2;42466:7;42461:2;42454:5;42450:14;42446:28;42436:38;;42426:54;;;:::o;42486:122::-;42559:24;42577:5;42559:24;:::i;:::-;42552:5;42549:35;42539:2;;42598:1;42595;42588:12;42539:2;42529:79;:::o;42614:116::-;42684:21;42699:5;42684:21;:::i;:::-;42677:5;42674:32;42664:2;;42720:1;42717;42710:12;42664:2;42654:76;:::o;42736:120::-;42808:23;42825:5;42808:23;:::i;:::-;42801:5;42798:34;42788:2;;42846:1;42843;42836:12;42788:2;42778:78;:::o;42862:122::-;42935:24;42953:5;42935:24;:::i;:::-;42928:5;42925:35;42915:2;;42974:1;42971;42964:12;42915:2;42905:79;:::o

Swarm Source

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