ETH Price: $3,467.71 (+0.28%)
Gas: 13 Gwei

Token

MoonBoyz (MOONBOYZ)
 

Overview

Max Total Supply

846 MOONBOYZ

Holders

377

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 MOONBOYZ
0x584589c0c16c5036af69d12983377946aead577e
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:
MoonBoyz

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 13 of 17: MoonBoyz.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.7;

import "./ERC721.sol";
import "./Ownable.sol";
import "./Address.sol";
import "./SafeMath.sol";
import "./Counters.sol";
import "./PaymentSplitter.sol";

contract MoonBoyz is ERC721, Ownable, PaymentSplitter {
    using SafeMath for uint256;
    using Counters for Counters.Counter;
    using Address for address;
    
    // Optional mapping for token URIs
    mapping (uint256 => string) private _tokenURIs;

    // Base URI
    string private _baseURIextended;
    
    Counters.Counter private _tokenIdCounter;
    
    uint256 public constant maxMoonBoyzSupply = 11111;
    bool public whiteListSale = false;
    bool public regularSale = false;
    uint256 public salePrice;
    
    mapping(address => uint256) public totalAvailableForUser;
    
    address[] public whiteListOne;
    address[] public whiteListTwo;
    address[] public whiteListThree;
    address[] public whiteListFour;
    address[] public whiteListFive;
    address[] public whiteListSix;
    address[] public whiteListSeven;
    address[] public whiteListEight;
    address[] public whiteListNine;
    address[] public whiteListTen;
    address[] public whiteListEleven;
    
    
    address payable thisContract;
    
    
    address[] private _team = [
        0x700eec4D6Ed56ED0F97a0f43Fc9DF5B426Ba25Fc, 
        0xDFf1889Ec0F09d14dE9379938bDc3Df0c6D0B39C, 
        0x4c2a5a4ea0d3f7E9142535f260A05b975Ee1df02, 
        0xDbe3BfBEc8332b0835bf0f466bA34c64655Ba94D, 
        0x12B285072b1Ffc70F367f08066b0D9A7d3337309 
        ];
    
    uint256[] private _teamShares = [
        23,
        22,
        23,
        22,
        10
        ];
    
    constructor() ERC721("MoonBoyz", "MOONBOYZ") PaymentSplitter(_team, _teamShares) {
    }
    
    fallback() external payable {

  	}
  	
  	function setBaseURI(string memory baseURI_) external onlyOwner() {
            _baseURIextended = baseURI_;
    }
    
    function _baseURI() internal view virtual override returns (string memory) {
            return _baseURIextended;
    }

    function setThisContract(address payable _thisContract) external onlyOwner {
        thisContract = _thisContract;
    }
    
    function populateWhiteListOne(address[] memory _users) external onlyOwner {
        for(uint256 i = 0; i < _users.length; i++) {
            whiteListOne.push(_users[i]);
            totalAvailableForUser[_users[i]] = totalAvailableForUser[_users[i]] + 2;
        }
    }
    
    function populateWhiteListTwo(address[] memory _users) external onlyOwner {
        for(uint256 i = 0; i < _users.length; i++) {
            whiteListTwo.push(_users[i]);
            totalAvailableForUser[_users[i]] = totalAvailableForUser[_users[i]] + 2;
        }   
    }
    
    function populateWhiteListThree(address[] memory _users) external onlyOwner {
        for(uint256 i = 0; i < _users.length; i++) {
            whiteListThree.push(_users[i]);
            totalAvailableForUser[_users[i]] = totalAvailableForUser[_users[i]] + 2;
        }
    }
    
    function populateWhiteListFour(address[] memory _users) external onlyOwner {
        for(uint256 i = 0; i < _users.length; i++) {
            whiteListFour.push(_users[i]);
            totalAvailableForUser[_users[i]] = totalAvailableForUser[_users[i]] + 2;
        }   
    }
    
    function populateWhiteListFive(address[] memory _users) external onlyOwner {
        for(uint256 i = 0; i < _users.length; i++) {
            whiteListFive.push(_users[i]);
            totalAvailableForUser[_users[i]] = totalAvailableForUser[_users[i]] + 2;
        }
    }
    
    function populateWhiteListSix(address[] memory _users) external onlyOwner {
        for(uint256 i = 0; i < _users.length; i++) {
            whiteListSix.push(_users[i]);
            totalAvailableForUser[_users[i]] = totalAvailableForUser[_users[i]] + 2;
        }   
    }
    
    function populateWhiteListSeven(address[] memory _users) external onlyOwner {
        for(uint256 i = 0; i < _users.length; i++) {
            whiteListSeven.push(_users[i]);
            totalAvailableForUser[_users[i]] = totalAvailableForUser[_users[i]] + 2;
        }
    }
    
    function populateWhiteListEight(address[] memory _users) external onlyOwner {
        for(uint256 i = 0; i < _users.length; i++) {
            whiteListEight.push(_users[i]);
            totalAvailableForUser[_users[i]] = totalAvailableForUser[_users[i]] + 2;
        }   
    }
    
    function populateWhiteListNine(address[] memory _users) external onlyOwner {
        for(uint256 i = 0; i < _users.length; i++) {
            whiteListNine.push(_users[i]);
            totalAvailableForUser[_users[i]] = totalAvailableForUser[_users[i]] + 2;
        }
    }
    
    function populateWhiteListTen(address[] memory _users) external onlyOwner {
        for(uint256 i = 0; i < _users.length; i++) {
            whiteListTen.push(_users[i]);
            totalAvailableForUser[_users[i]] = totalAvailableForUser[_users[i]] + 2;
        }   
    }
    
    function populateWhiteListEleven(address[] memory _users) external onlyOwner {
        for(uint256 i = 0; i < _users.length; i++) {
            whiteListEleven.push(_users[i]);
            totalAvailableForUser[_users[i]] = totalAvailableForUser[_users[i]] + 2;
        }
    }
    
    function whitelistOwners(address _owners) public onlyOwner {
        whiteListOne.push(_owners);
        whiteListTwo.push(_owners);
        whiteListThree.push(_owners);
        whiteListFour.push(_owners);
        whiteListFive.push(_owners);
        whiteListSix.push(_owners);
        whiteListSeven.push(_owners);
        whiteListEight.push(_owners);
        whiteListNine.push(_owners);
        whiteListTen.push(_owners);
        whiteListEleven.push(_owners);
        totalAvailableForUser[_owners] = 299;
    }
    
    function viewWhitelistOneStatus(address _user) public view returns(bool) {
        for(uint256 i = 0; i < whiteListOne.length; i++) {
            if(whiteListOne[i] == _user) {
                return true;
            }
        }
        return false;
    }
    
    function viewWhitelistTwoStatus(address _user) public view returns(bool) {
        for(uint256 i = 0; i < whiteListTwo.length; i++) {
            if(whiteListTwo[i] == _user) {
                return true;
            }
        }
        return false;
    }
    
    function viewWhitelistThreeStatus(address _user) public view returns(bool) {
        for(uint256 i = 0; i < whiteListThree.length; i++) {
            if(whiteListThree[i] == _user) {
                return true;
            }
        }
        return false;
    }
    
    function viewWhitelistFourStatus(address _user) public view returns(bool) {
        for(uint256 i = 0; i < whiteListFour.length; i++) {
            if(whiteListFour[i] == _user) {
                return true;
            }
        }
        return false;
    }
    
    function viewWhitelistFiveStatus(address _user) public view returns(bool) {
        for(uint256 i = 0; i < whiteListFive.length; i++) {
            if(whiteListFive[i] == _user) {
                return true;
            }
        }
        return false;
    }
    
    function viewWhitelistSixStatus(address _user) public view returns(bool) {
        for(uint256 i = 0; i < whiteListSix.length; i++) {
            if(whiteListSix[i] == _user) {
                return true;
            }
        }
        return false;
    }
    
    function viewWhitelistSevenStatus(address _user) public view returns(bool) {
        for(uint256 i = 0; i < whiteListSeven.length; i++) {
            if(whiteListSeven[i] == _user) {
                return true;
            }
        }
        return false;
    }
    
    function viewWhitelistEightStatus(address _user) public view returns(bool) {
        for(uint256 i = 0; i < whiteListEight.length; i++) {
            if(whiteListEight[i] == _user) {
                return true;
            }
        }
        return false;
    }
    
    function viewWhitelistNineStatus(address _user) public view returns(bool) {
        for(uint256 i = 0; i < whiteListNine.length; i++) {
            if(whiteListNine[i] == _user) {
                return true;
            }
        }
        return false;
    }
    
    function viewWhitelistTenStatus(address _user) public view returns(bool) {
        for(uint256 i = 0; i < whiteListTen.length; i++) {
            if(whiteListTen[i] == _user) {
                return true;
            }
        }
        return false;
    }
    
    function viewWhitelistElevenStatus(address _user) public view returns(bool) {
        for(uint256 i = 0; i < whiteListEleven.length; i++) {
            if(whiteListEleven[i] == _user) {
                return true;
            }
        }
        return false;
    }
    
    function whiteListGroupOne() public payable {
        require(msg.value >= salePrice, "Insuffcient amount sent");
        require(whiteListSale == true, "Whitelisted Sale Not Active");
        uint256 _tokenID = getAvailableIndex();
        require(viewWhitelistOneStatus(msg.sender), "Not In Group One");
        require(thisContract.send(msg.value), "Receiever must be the contract");
        require(_tokenIdCounter.current() < maxMoonBoyzSupply, "At Max Supply");
        require(totalAvailableForUser[msg.sender] >= 1, "Exceeds Alotted Amount");
        totalAvailableForUser[msg.sender] = totalAvailableForUser[msg.sender] - 1;
        _safeMint(msg.sender, _tokenID);
        _tokenIdCounter.increment();
    }
    
    function whiteListGroupTwo() public payable {
        require(msg.value >= salePrice, "Insuffcient amount sent");
        require(whiteListSale == true, "Whitelisted Sale Not Active");
        uint256 _tokenID = getAvailableIndex();
        require(viewWhitelistTwoStatus(msg.sender), "Not In Group One");
        require(thisContract.send(msg.value), "Receiever must be the contract");
        require(_tokenIdCounter.current() < maxMoonBoyzSupply, "At Max Supply");
        require(totalAvailableForUser[msg.sender] >= 1, "Exceeds Alotted Amount");
        totalAvailableForUser[msg.sender] = totalAvailableForUser[msg.sender] - 1;
        _safeMint(msg.sender, _tokenID);
        _tokenIdCounter.increment();
    }
    
    function whiteListGroupThree() public payable {
        require(msg.value >= salePrice, "Insuffcient amount sent");
        require(whiteListSale == true, "Whitelisted Sale Not Active");
        uint256 _tokenID = getAvailableIndex();
        require(viewWhitelistThreeStatus(msg.sender), "Not In Group One");
        require(thisContract.send(msg.value), "Receiever must be the contract");
        require(_tokenIdCounter.current() < maxMoonBoyzSupply, "At Max Supply");
        require(totalAvailableForUser[msg.sender] >= 1, "Exceeds Alotted Amount");
        totalAvailableForUser[msg.sender] = totalAvailableForUser[msg.sender] - 1;
        _safeMint(msg.sender, _tokenID);
        _tokenIdCounter.increment();
    }
    
    function whiteListGroupFour() public payable {
        require(msg.value >= salePrice, "Insuffcient amount sent");
        require(whiteListSale == true, "Whitelisted Sale Not Active");
        uint256 _tokenID = getAvailableIndex();
        require(viewWhitelistFourStatus(msg.sender), "Not In Group One");
        require(thisContract.send(msg.value), "Receiever must be the contract");
        require(_tokenIdCounter.current() < maxMoonBoyzSupply, "At Max Supply");
        require(totalAvailableForUser[msg.sender] >= 1, "Exceeds Alotted Amount");
        totalAvailableForUser[msg.sender] = totalAvailableForUser[msg.sender] - 1;
        _safeMint(msg.sender, _tokenID);
        _tokenIdCounter.increment();
    }
    
    function whiteListGroupFive() public payable {
        require(msg.value >= salePrice, "Insuffcient amount sent");
        require(whiteListSale == true, "Whitelisted Sale Not Active");
        uint256 _tokenID = getAvailableIndex();
        require(viewWhitelistFiveStatus(msg.sender), "Not In Group One");
        require(thisContract.send(msg.value), "Receiever must be the contract");
        require(_tokenIdCounter.current() < maxMoonBoyzSupply, "At Max Supply");
        require(totalAvailableForUser[msg.sender] >= 1, "Exceeds Alotted Amount");
        totalAvailableForUser[msg.sender] = totalAvailableForUser[msg.sender] - 1;
        _safeMint(msg.sender, _tokenID);
        _tokenIdCounter.increment();
    }
    
    function whiteListGroupSix() public payable {
        require(msg.value >= salePrice, "Insuffcient amount sent");
        require(whiteListSale == true, "Whitelisted Sale Not Active");
        uint256 _tokenID = getAvailableIndex();
        require(viewWhitelistSixStatus(msg.sender), "Not In Group One");
        require(thisContract.send(msg.value), "Receiever must be the contract");
        require(_tokenIdCounter.current() < maxMoonBoyzSupply, "At Max Supply");
        require(totalAvailableForUser[msg.sender] >= 1, "Exceeds Alotted Amount");
        totalAvailableForUser[msg.sender] = totalAvailableForUser[msg.sender] - 1;
        _safeMint(msg.sender, _tokenID);
        _tokenIdCounter.increment();
    }
    
    function whiteListGroupSeven() public payable {
        require(msg.value >= salePrice, "Insuffcient amount sent");
        require(whiteListSale == true, "Whitelisted Sale Not Active");
        uint256 _tokenID = getAvailableIndex();
        require(viewWhitelistSevenStatus(msg.sender), "Not In Group One");
        require(thisContract.send(msg.value), "Receiever must be the contract");
        require(_tokenIdCounter.current() < maxMoonBoyzSupply, "At Max Supply");
        require(totalAvailableForUser[msg.sender] >= 1, "Exceeds Alotted Amount");
        totalAvailableForUser[msg.sender] = totalAvailableForUser[msg.sender] - 1;
        _safeMint(msg.sender, _tokenID);
        _tokenIdCounter.increment();
    }
    
    function whiteListGroupEight() public payable {
        require(msg.value >= salePrice, "Insuffcient amount sent");
        require(whiteListSale == true, "Whitelisted Sale Not Active");
        uint256 _tokenID = getAvailableIndex();
        require(viewWhitelistEightStatus(msg.sender), "Not In Group One");
        require(thisContract.send(msg.value), "Receiever must be the contract");
        require(_tokenIdCounter.current() < maxMoonBoyzSupply, "At Max Supply");
        require(totalAvailableForUser[msg.sender] >= 1, "Exceeds Alotted Amount");
        totalAvailableForUser[msg.sender] = totalAvailableForUser[msg.sender] - 1;
        _safeMint(msg.sender, _tokenID);
        _tokenIdCounter.increment();
    }
    
    function whiteListGroupNine() public payable {
        require(msg.value >= salePrice, "Insuffcient amount sent");
        require(whiteListSale == true, "Whitelisted Sale Not Active");
        uint256 _tokenID = getAvailableIndex();
        require(viewWhitelistNineStatus(msg.sender), "Not In Group One");
        require(thisContract.send(msg.value), "Receiever must be the contract");
        require(_tokenIdCounter.current() < maxMoonBoyzSupply, "At Max Supply");
        require(totalAvailableForUser[msg.sender] >= 1, "Exceeds Alotted Amount");
        totalAvailableForUser[msg.sender] = totalAvailableForUser[msg.sender] - 1;
        _safeMint(msg.sender, _tokenID);
        _tokenIdCounter.increment();
    }
    
    function whiteListGroupTen() public payable {
        require(msg.value >= salePrice, "Insuffcient amount sent");
        require(whiteListSale == true, "Whitelisted Sale Not Active");
        uint256 _tokenID = getAvailableIndex();
        require(viewWhitelistTenStatus(msg.sender), "Not In Group One");
        require(thisContract.send(msg.value), "Receiever must be the contract");
        require(_tokenIdCounter.current() < maxMoonBoyzSupply, "At Max Supply");
        require(totalAvailableForUser[msg.sender] >= 1, "Exceeds Alotted Amount");
        totalAvailableForUser[msg.sender] = totalAvailableForUser[msg.sender] - 1;
        _safeMint(msg.sender, _tokenID);
        _tokenIdCounter.increment();
    }
    
    function whiteListGroupEleven() public payable {
        require(msg.value >= salePrice, "Insuffcient amount sent");
        require(whiteListSale == true, "Whitelisted Sale Not Active");
        uint256 _tokenID = getAvailableIndex();
        require(viewWhitelistElevenStatus(msg.sender), "Not In Group One");
        require(thisContract.send(msg.value), "Receiever must be the contract");
        require(_tokenIdCounter.current() < maxMoonBoyzSupply, "At Max Supply");
        require(totalAvailableForUser[msg.sender] >= 1, "Exceeds Alotted Amount");
        totalAvailableForUser[msg.sender] = totalAvailableForUser[msg.sender] - 1;
        _safeMint(msg.sender, _tokenID);
        _tokenIdCounter.increment();
    }
    
    function regularSaleMint() public payable {
        require(msg.value >= salePrice, "Insuffcient amount sent");
        require(regularSale == true, "Normal Sale Not Active");
        require(thisContract.send(msg.value), "Receiever must be the contract");
        require(_tokenIdCounter.current() < maxMoonBoyzSupply, "At Max Supply");
        uint256 _tokenID = getAvailableIndex();
        require(!super._exists(_tokenID), "Token ID Exists");
        
        _safeMint(msg.sender, _tokenID);
        _tokenIdCounter.increment();
    }
    
    function getAvailableIndex() public view returns(uint256) {
        for(uint256 i = 1; i < maxMoonBoyzSupply; i++) {
            if(!_exists(i)) {
                return i;
            }
        }
        return 0;
    }
    
    function totalSupply() external view returns (uint256) {
        return _tokenIdCounter.current();
    }
    
    function setWhitelistSale(bool _trueOrFalse) external onlyOwner {
        whiteListSale = _trueOrFalse;
    }
    
    function setRegularSale(bool _trueOrFalse) external onlyOwner {
        regularSale = _trueOrFalse;
    }
    
    function setSalePrice(uint256 _priceInWei) external onlyOwner {
        salePrice = _priceInWei;
    }
    
    function withdrawAll() external onlyOwner {
        for (uint256 i = 0; i < _team.length; i++) {
            address payable wallet = payable(_team[i]);
            release(wallet);
        }
    }
    
}

File 1 of 17: 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);
    }

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

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

File 2 of 17: 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 17: 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 17: EnumerableMap.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./EnumerableSet.sol";

/**
 * @dev Library for managing an enumerable variant of Solidity's
 * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
 * type.
 *
 * Maps have the following properties:
 *
 * - Entries are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Entries are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableMap for EnumerableMap.UintToAddressMap;
 *
 *     // Declare a set state variable
 *     EnumerableMap.UintToAddressMap private myMap;
 * }
 * ```
 *
 * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
 * supported.
 */
library EnumerableMap {
    using EnumerableSet for EnumerableSet.Bytes32Set;

    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Map type with
    // bytes32 keys and values.
    // The Map implementation uses private functions, and user-facing
    // implementations (such as Uint256ToAddressMap) are just wrappers around
    // the underlying Map.
    // This means that we can only create new EnumerableMaps for types that fit
    // in bytes32.

    struct Map {
        // Storage of keys
        EnumerableSet.Bytes32Set _keys;
        mapping(bytes32 => bytes32) _values;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function _set(
        Map storage map,
        bytes32 key,
        bytes32 value
    ) private returns (bool) {
        map._values[key] = value;
        return map._keys.add(key);
    }

    /**
     * @dev Removes a key-value pair from a map. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function _remove(Map storage map, bytes32 key) private returns (bool) {
        delete map._values[key];
        return map._keys.remove(key);
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function _contains(Map storage map, bytes32 key) private view returns (bool) {
        return map._keys.contains(key);
    }

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private view returns (uint256) {
        return map._keys.length();
    }

    /**
     * @dev Returns the key-value pair stored at position `index` in the map. O(1).
     *
     * Note that there are no guarantees on the ordering of entries inside the
     * array, and it may change when more entries are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) {
        bytes32 key = map._keys.at(index);
        return (key, map._values[key]);
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     */
    function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) {
        bytes32 value = map._values[key];
        if (value == bytes32(0)) {
            return (_contains(map, key), bytes32(0));
        } else {
            return (true, value);
        }
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function _get(Map storage map, bytes32 key) private view returns (bytes32) {
        bytes32 value = map._values[key];
        require(value != 0 || _contains(map, key), "EnumerableMap: nonexistent key");
        return value;
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {_tryGet}.
     */
    function _get(
        Map storage map,
        bytes32 key,
        string memory errorMessage
    ) private view returns (bytes32) {
        bytes32 value = map._values[key];
        require(value != 0 || _contains(map, key), errorMessage);
        return value;
    }

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(
        UintToAddressMap storage map,
        uint256 key,
        address value
    ) internal returns (bool) {
        return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) {
        return _remove(map._inner, bytes32(key));
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) {
        return _contains(map._inner, bytes32(key));
    }

    /**
     * @dev Returns the number of elements in the map. O(1).
     */
    function length(UintToAddressMap storage map) internal view returns (uint256) {
        return _length(map._inner);
    }

    /**
     * @dev Returns the element stored at position `index` in the set. O(1).
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) {
        (bytes32 key, bytes32 value) = _at(map._inner, index);
        return (uint256(key), address(uint160(uint256(value))));
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     *
     * _Available since v3.4._
     */
    function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) {
        (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key));
        return (success, address(uint160(uint256(value))));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(UintToAddressMap storage map, uint256 key) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key)))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryGet}.
     */
    function get(
        UintToAddressMap storage map,
        uint256 key,
        string memory errorMessage
    ) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage))));
    }
}

File 5 of 17: EnumerableSet.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastvalue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastvalue;
                // Update the index for the moved value
                set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        return _values(set._inner);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        assembly {
            result := store
        }

        return result;
    }
}

File 6 of 17: 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 7 of 17: 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 "https://ipfs.io/ipfs/QmX5yN7YR2RBQRD6cbkk5v8Ut7fZ8ZZYXNgcf1Gb25jAAo?filename=MetaData.json";
    }

    /**
     * @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.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 8 of 17: 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 9 of 17: 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 10 of 17: 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 11 of 17: 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 12 of 17: 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 14 of 17: 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 15 of 17: PaymentSplitter.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Address.sol";
import "./Context.sol";

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() external view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() external view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) external view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) external view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) external view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + _totalReleased;
        uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account];

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] = _released[account] + payment;
        _totalReleased = _totalReleased + payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

File 16 of 17: 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 17 of 17: 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":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAvailableIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxMoonBoyzSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"populateWhiteListEight","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"populateWhiteListEleven","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"populateWhiteListFive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"populateWhiteListFour","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"populateWhiteListNine","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"populateWhiteListOne","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"populateWhiteListSeven","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"populateWhiteListSix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"populateWhiteListTen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"populateWhiteListThree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"populateWhiteListTwo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"regularSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"regularSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"salePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_trueOrFalse","type":"bool"}],"name":"setRegularSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_priceInWei","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_thisContract","type":"address"}],"name":"setThisContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_trueOrFalse","type":"bool"}],"name":"setWhitelistSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalAvailableForUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","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":"_user","type":"address"}],"name":"viewWhitelistEightStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"viewWhitelistElevenStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"viewWhitelistFiveStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"viewWhitelistFourStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"viewWhitelistNineStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"viewWhitelistOneStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"viewWhitelistSevenStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"viewWhitelistSixStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"viewWhitelistTenStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"viewWhitelistThreeStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"viewWhitelistTwoStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whiteListEight","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whiteListEleven","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whiteListFive","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whiteListFour","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteListGroupEight","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whiteListGroupEleven","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whiteListGroupFive","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whiteListGroupFour","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whiteListGroupNine","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whiteListGroupOne","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whiteListGroupSeven","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whiteListGroupSix","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whiteListGroupTen","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whiteListGroupThree","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whiteListGroupTwo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whiteListNine","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whiteListOne","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteListSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whiteListSeven","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whiteListSix","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whiteListTen","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whiteListThree","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whiteListTwo","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owners","type":"address"}],"name":"whitelistOwners","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

600f805461ffff1916905561012060405273700eec4d6ed56ed0f97a0f43fc9df5b426ba25fc608090815273dff1889ec0f09d14de9379938bdc3df0c6d0b39c60a052734c2a5a4ea0d3f7e9142535f260a05b975ee1df0260c05273dbe3bfbec8332b0835bf0f466ba34c64655ba94d60e0527312b285072b1ffc70f367f08066b0d9a7d3337309610100526200009b90601e906005620005a1565b506040805160a0810182526017808252601660208301819052928201526060810191909152600a6080820152620000d790601f9060056200060b565b50348015620000e557600080fd5b50601e8054806020026020016040519081016040528092919081815260200182805480156200013e57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200011f575b5050505050601f8054806020026020016040519081016040528092919081815260200182805480156200019157602002820191906000526020600020905b8154815260200190600101908083116200017c575b50505050506040518060400160405280600881526020016726b7b7b72137bcbd60c11b8152506040518060400160405280600881526020016726a7a7a72127acad60c11b8152508160009080519060200190620001f09291906200064e565b508051620002069060019060208401906200064e565b505050620002236200021d6200035d60201b60201c565b62000361565b8051825114620002955760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620002e85760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f2070617965657300000000000060448201526064016200028c565b60005b825181101562000354576200033f8382815181106200030e576200030e6200076e565b60200260200101518383815181106200032b576200032b6200076e565b6020026020010151620003b360201b60201c565b806200034b816200073a565b915050620002eb565b50505062000784565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004205760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b60648201526084016200028c565b60008111620004725760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a2073686172657320617265203000000060448201526064016200028c565b6001600160a01b03821660009081526009602052604090205415620004ee5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b60648201526084016200028c565b600b8054600181019091557f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319166001600160a01b038416908117909155600090815260096020526040902081905560075462000558908290620006e2565b600755604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b828054828255906000526020600020908101928215620005f9579160200282015b82811115620005f957825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620005c2565b5062000607929150620006cb565b5090565b828054828255906000526020600020908101928215620005f9579160200282015b82811115620005f9578251829060ff169055916020019190600101906200062c565b8280546200065c90620006fd565b90600052602060002090601f016020900481019282620006805760008555620005f9565b82601f106200069b57805160ff1916838001178555620005f9565b82800160010185558215620005f9579182015b82811115620005f9578251825591602001919060010190620006ae565b5b80821115620006075760008155600101620006cc565b60008219821115620006f857620006f862000758565b500190565b600181811c908216806200071257607f821691505b602082108114156200073457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562000751576200075162000758565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6143de80620007946000396000f3fe6080604052600436106104525760003560e01c806378ec7fed1161023d578063c97191bc11610138578063e33b7de3116100bb578063f2fde38b11610082578063f2fde38b14610d34578063f33f279414610d54578063f51f96dd14610d74578063f6da2fb014610d8a578063f98c4c1014610daa578063fbdbec7414610db257005b8063e33b7de314610c8e578063e3a51dcd14610ca3578063e435874414610cc3578063e985e9c514610ccb578063efdc8f6a14610d1457005b8063d5c27f20116100ff578063d5c27f2014610c06578063d7acc2f614610c26578063d9ceef0814610c46578063e0958fb514610c66578063e2628afa14610c8657005b8063c97191bc14610b50578063ca7ce3ec14610b70578063ce7c2ac214610b90578063d17a15d114610bc6578063d52cb86914610be657005b806395ab5aa5116101c0578063b0adb83911610187578063b0adb83914610ac8578063b88d4fde14610ae8578063bde44f4214610b08578063c25b9fd114610b10578063c87b56dd14610b3057005b806395ab5aa514610a1e57806395d89b4114610a3d5780639852595c14610a52578063a22cb46514610a88578063a2c4b7a714610aa857005b8063853828b611610204578063853828b61461099157806386a173ee146109a657806389e60c20146109c05780638b83209b146109e05780638da5cb5b14610a0057005b806378ec7fed14610913578063794265e4146109335780637a5937b21461093b5780637f46bc2d1461095b578063802e73f11461097b57005b80632997d5c21161034d57806364101a25116102d0578063684954fd11610297578063684954fd1461087e578063687d9de41461089e578063689a244f146108be57806370a08231146108de578063715018a6146108fe57005b806364101a25146107e957806364167fed146107f1578063651a6b8c146108115780636547ae0d1461083157806367aedf711461085157005b80633fa6f516116103145780633fa6f5161461076c57806342842e0e146107815780634faccd71146107a157806355f804b3146107a95780636352211e146107c957005b80632997d5c2146106ef5780632c5071901461070f5780632c8b60551461072f5780633a98ef39146107375780633f5a149e1461074c57005b806318160ddd116103d5578063217e499e1161039c578063217e499e146106675780632205a65a1461066f5780632217f3fc1461068f57806323b872dd146106af578063270790fa146106cf57005b806318160ddd146105c457806319165587146105e75780631919fed7146106075780631d1a3db1146106275780632009b3f41461064757005b80630a08a7d2116104195780630a08a7d21461056c5780630c62da8c14610574578063113d33431461057c578063119167f3146105845780631372c9fc146105a457005b806301ffc9a71461049d57806304078072146104d257806306fdde031461050a578063081812fc1461052c578063095ea7b31461054c57005b3661049b577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b005b3480156104a957600080fd5b506104bd6104b8366004613f6f565b610dd2565b60405190151581526020015b60405180910390f35b3480156104de57600080fd5b506104f26104ed366004613ff2565b610e24565b6040516001600160a01b0390911681526020016104c9565b34801561051657600080fd5b5061051f610e4e565b6040516104c991906140a3565b34801561053857600080fd5b506104f2610547366004613ff2565b610ee0565b34801561055857600080fd5b5061049b610567366004613e6f565b610f6d565b61049b611083565b61049b611227565b61049b611413565b34801561059057600080fd5b506104f261059f366004613ff2565b611471565b3480156105b057600080fd5b5061049b6105bf366004613d23565b611481565b3480156105d057600080fd5b506105d9611717565b6040519081526020016104c9565b3480156105f357600080fd5b5061049b610602366004613d23565b611727565b34801561061357600080fd5b5061049b610622366004613ff2565b6118f8565b34801561063357600080fd5b5061049b610642366004613e9b565b611927565b34801561065357600080fd5b506104bd610662366004613d23565b611a53565b61049b611abd565b34801561067b57600080fd5b5061049b61068a366004613e9b565b611b1b565b34801561069b57600080fd5b5061049b6106aa366004613e9b565b611c43565b3480156106bb57600080fd5b5061049b6106ca366004613d79565b611d6b565b3480156106db57600080fd5b5061049b6106ea366004613e9b565b611d9c565b3480156106fb57600080fd5b506104bd61070a366004613d23565b611ec4565b34801561071b57600080fd5b506104f261072a366004613ff2565b611f25565b61049b611f35565b34801561074357600080fd5b506007546105d9565b34801561075857600080fd5b506104bd610767366004613d23565b611f8f565b34801561077857600080fd5b506105d9611ff0565b34801561078d57600080fd5b5061049b61079c366004613d79565b61202b565b61049b612046565b3480156107b557600080fd5b5061049b6107c4366004613fa9565b6120a4565b3480156107d557600080fd5b506104f26107e4366004613ff2565b6120e1565b61049b612158565b3480156107fd57600080fd5b506104bd61080c366004613d23565b6121b2565b34801561081d57600080fd5b506104bd61082c366004613d23565b612213565b34801561083d57600080fd5b5061049b61084c366004613e9b565b612274565b34801561085d57600080fd5b506105d961086c366004613d23565b60116020526000908152604090205481565b34801561088a57600080fd5b506104bd610899366004613d23565b61239c565b3480156108aa57600080fd5b506104bd6108b9366004613d23565b6123fd565b3480156108ca57600080fd5b506104bd6108d9366004613d23565b61245e565b3480156108ea57600080fd5b506105d96108f9366004613d23565b6124bf565b34801561090a57600080fd5b5061049b612546565b34801561091f57600080fd5b506104f261092e366004613ff2565b61257c565b61049b61258c565b34801561094757600080fd5b506104bd610956366004613d23565b6125ea565b34801561096757600080fd5b506104bd610976366004613d23565b61264b565b34801561098757600080fd5b506105d9612b6781565b34801561099d57600080fd5b5061049b6126ac565b3480156109b257600080fd5b50600f546104bd9060ff1681565b3480156109cc57600080fd5b5061049b6109db366004613e9b565b61272b565b3480156109ec57600080fd5b506104f26109fb366004613ff2565b612853565b348015610a0c57600080fd5b506006546001600160a01b03166104f2565b348015610a2a57600080fd5b50600f546104bd90610100900460ff1681565b348015610a4957600080fd5b5061051f612883565b348015610a5e57600080fd5b506105d9610a6d366004613d23565b6001600160a01b03166000908152600a602052604090205490565b348015610a9457600080fd5b5061049b610aa3366004613e3a565b612892565b348015610ab457600080fd5b506104f2610ac3366004613ff2565b612957565b348015610ad457600080fd5b5061049b610ae3366004613e9b565b612967565b348015610af457600080fd5b5061049b610b03366004613dba565b612a8f565b61049b612ac7565b348015610b1c57600080fd5b5061049b610b2b366004613d23565b612b25565b348015610b3c57600080fd5b5061051f610b4b366004613ff2565b612b71565b348015610b5c57600080fd5b506104f2610b6b366004613ff2565b612c3c565b348015610b7c57600080fd5b5061049b610b8b366004613f54565b612c4c565b348015610b9c57600080fd5b506105d9610bab366004613d23565b6001600160a01b031660009081526009602052604090205490565b348015610bd257600080fd5b506104f2610be1366004613ff2565b612c89565b348015610bf257600080fd5b5061049b610c01366004613f54565b612c99565b348015610c1257600080fd5b506104f2610c21366004613ff2565b612cdd565b348015610c3257600080fd5b5061049b610c41366004613e9b565b612ced565b348015610c5257600080fd5b506104bd610c61366004613d23565b612e15565b348015610c7257600080fd5b5061049b610c81366004613e9b565b612e76565b61049b612f9e565b348015610c9a57600080fd5b506008546105d9565b348015610caf57600080fd5b506104f2610cbe366004613ff2565b612ffc565b61049b61300c565b348015610cd757600080fd5b506104bd610ce6366004613d40565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610d2057600080fd5b5061049b610d2f366004613e9b565b61306a565b348015610d4057600080fd5b5061049b610d4f366004613d23565b613192565b348015610d6057600080fd5b5061049b610d6f366004613e9b565b61322a565b348015610d8057600080fd5b506105d960105481565b348015610d9657600080fd5b506104f2610da5366004613ff2565b613352565b61049b613362565b348015610dbe57600080fd5b506104f2610dcd366004613ff2565b6133c0565b60006001600160e01b031982166380ac58cd60e01b1480610e0357506001600160e01b03198216635b5e139f60e01b145b80610e1e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b601a8181548110610e3457600080fd5b6000918252602090912001546001600160a01b0316905081565b606060008054610e5d906142bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610e89906142bb565b8015610ed65780601f10610eab57610100808354040283529160200191610ed6565b820191906000526020600020905b815481529060010190602001808311610eb957829003601f168201915b5050505050905090565b6000610eeb826133d0565b610f515760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610f78826120e1565b9050806001600160a01b0316836001600160a01b03161415610fe65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610f48565b336001600160a01b038216148061100257506110028133610ce6565b6110745760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610f48565b61107e83836133ed565b505050565b6010543410156110a55760405162461bcd60e51b8152600401610f4890614108565b600f5460ff6101009091041615156001146110fb5760405162461bcd60e51b81526020600482015260166024820152754e6f726d616c2053616c65204e6f742041637469766560501b6044820152606401610f48565b601d546040516001600160a01b03909116903480156108fc02916000818181858888f1935050505061116f5760405162461bcd60e51b815260206004820152601e60248201527f526563656965766572206d7573742062652074686520636f6e747261637400006044820152606401610f48565b612b6761117b600e5490565b106111b85760405162461bcd60e51b815260206004820152600d60248201526c4174204d617820537570706c7960981b6044820152606401610f48565b60006111c2611ff0565b90506111cd816133d0565b1561120c5760405162461bcd60e51b815260206004820152600f60248201526e546f6b656e2049442045786973747360881b6044820152606401610f48565b611216338261345b565b611224600e80546001019055565b50565b6010543410156112495760405162461bcd60e51b8152600401610f4890614108565b600f5460ff1615156001146112705760405162461bcd60e51b8152600401610f4890614174565b600061127a611ff0565b905061128533611ec4565b6112c45760405162461bcd60e51b815260206004820152601060248201526f4e6f7420496e2047726f7570204f6e6560801b6044820152606401610f48565b601d546040516001600160a01b03909116903480156108fc02916000818181858888f193505050506113385760405162461bcd60e51b815260206004820152601e60248201527f526563656965766572206d7573742062652074686520636f6e747261637400006044820152606401610f48565b612b67611344600e5490565b106113815760405162461bcd60e51b815260206004820152600d60248201526c4174204d617820537570706c7960981b6044820152606401610f48565b33600090815260116020526040902054600111156113da5760405162461bcd60e51b8152602060048201526016602482015275115e18d959591cc8105b1bdd1d195908105b5bdd5b9d60521b6044820152606401610f48565b336000908152601160205260409020546113f690600190614278565b33600081815260116020526040902091909155611216908261345b565b6010543410156114355760405162461bcd60e51b8152600401610f4890614108565b600f5460ff16151560011461145c5760405162461bcd60e51b8152600401610f4890614174565b6000611466611ff0565b90506112853361264b565b60178181548110610e3457600080fd5b6006546001600160a01b031633146114ab5760405162461bcd60e51b8152600401610f489061413f565b6012805460018181019092557fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34440180546001600160a01b039093166001600160a01b03199384168117909155601380548084019091557f66de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a090018054841682179055601480548084019091557fce6d7b5282bd9a3661ae061feed1dbda4e52ab073b1f9285be6e155d9c38d4ec018054841682179055601580548084019091557f55f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec475018054841682179055601680548084019091557fd833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b5124289018054841682179055601780548084019091557fc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c15018054841682179055601880548084019091557fb13d2d76d1f4b7be834882e410b3e3a8afaf69f83600ae24db354391d2378d2e018054841682179055601980548084019091557f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c9695018054841682179055601a80548084019091557f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff63e018054841682179055601b80548084019091557f3ad8aa4f87544323a9d1e5dd902f40c356527a7955687113db5f9a85ad579dc1018054841682179055601c805492830190557f0e4562a10381dec21b205ed72637e6b1b523bdd0e4d4d50af5cd23dd4500a21190910180549092168117909155600090815260116020526040902061012b9055565b6000611722600e5490565b905090565b6001600160a01b03811660009081526009602052604090205461179b5760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b6064820152608401610f48565b6000600854476117ab919061422d565b6001600160a01b0383166000908152600a602090815260408083205460075460099093529083205493945091926117e29085614259565b6117ec9190614245565b6117f69190614278565b9050806118595760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b6064820152608401610f48565b6001600160a01b0383166000908152600a602052604090205461187d90829061422d565b6001600160a01b0384166000908152600a60205260409020556008546118a490829061422d565b6008556118b18382613475565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b6006546001600160a01b031633146119225760405162461bcd60e51b8152600401610f489061413f565b601055565b6006546001600160a01b031633146119515760405162461bcd60e51b8152600401610f489061413f565b60005b8151811015611a4f57601982828151811061197157611971614351565b6020908102919091018101518254600181018455600093845291832090910180546001600160a01b0319166001600160a01b039092169190911790558251601191908490849081106119c5576119c5614351565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000205460026119fa919061422d565b60116000848481518110611a1057611a10614351565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080611a47906142f6565b915050611954565b5050565b6000805b601754811015611ab457826001600160a01b031660178281548110611a7e57611a7e614351565b6000918252602090912001546001600160a01b03161415611aa25750600192915050565b80611aac816142f6565b915050611a57565b50600092915050565b601054341015611adf5760405162461bcd60e51b8152600401610f4890614108565b600f5460ff161515600114611b065760405162461bcd60e51b8152600401610f4890614174565b6000611b10611ff0565b9050611285336125ea565b6006546001600160a01b03163314611b455760405162461bcd60e51b8152600401610f489061413f565b60005b8151811015611a4f576014828281518110611b6557611b65614351565b6020908102919091018101518254600181018455600093845291832090910180546001600160a01b0319166001600160a01b03909216919091179055825160119190849084908110611bb957611bb9614351565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020546002611bee919061422d565b60116000848481518110611c0457611c04614351565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080611c3b906142f6565b915050611b48565b6006546001600160a01b03163314611c6d5760405162461bcd60e51b8152600401610f489061413f565b60005b8151811015611a4f576017828281518110611c8d57611c8d614351565b6020908102919091018101518254600181018455600093845291832090910180546001600160a01b0319166001600160a01b03909216919091179055825160119190849084908110611ce157611ce1614351565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020546002611d16919061422d565b60116000848481518110611d2c57611d2c614351565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080611d63906142f6565b915050611c70565b611d75338261358e565b611d915760405162461bcd60e51b8152600401610f48906141ab565b61107e838383613678565b6006546001600160a01b03163314611dc65760405162461bcd60e51b8152600401610f489061413f565b60005b8151811015611a4f57601b828281518110611de657611de6614351565b6020908102919091018101518254600181018455600093845291832090910180546001600160a01b0319166001600160a01b03909216919091179055825160119190849084908110611e3a57611e3a614351565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020546002611e6f919061422d565b60116000848481518110611e8557611e85614351565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080611ebc906142f6565b915050611dc9565b6000805b601454811015611ab457826001600160a01b031660148281548110611eef57611eef614351565b6000918252602090912001546001600160a01b03161415611f135750600192915050565b80611f1d816142f6565b915050611ec8565b60168181548110610e3457600080fd5b601054341015611f575760405162461bcd60e51b8152600401610f4890614108565b600f5460ff161515600114611f7e5760405162461bcd60e51b8152600401610f4890614174565b6000611f88611ff0565b9050611285335b6000805b601c54811015611ab457826001600160a01b0316601c8281548110611fba57611fba614351565b6000918252602090912001546001600160a01b03161415611fde5750600192915050565b80611fe8816142f6565b915050611f93565b600060015b612b6781101561202357612008816133d0565b61201157919050565b8061201b816142f6565b915050611ff5565b506000905090565b61107e83838360405180602001604052806000815250612a8f565b6010543410156120685760405162461bcd60e51b8152600401610f4890614108565b600f5460ff16151560011461208f5760405162461bcd60e51b8152600401610f4890614174565b6000612099611ff0565b905061128533612213565b6006546001600160a01b031633146120ce5760405162461bcd60e51b8152600401610f489061413f565b8051611a4f90600d906020840190613c1d565b6000818152600260205260408120546001600160a01b031680610e1e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610f48565b60105434101561217a5760405162461bcd60e51b8152600401610f4890614108565b600f5460ff1615156001146121a15760405162461bcd60e51b8152600401610f4890614174565b60006121ab611ff0565b9050611285335b6000805b601b54811015611ab457826001600160a01b0316601b82815481106121dd576121dd614351565b6000918252602090912001546001600160a01b031614156122015750600192915050565b8061220b816142f6565b9150506121b6565b6000805b601254811015611ab457826001600160a01b03166012828154811061223e5761223e614351565b6000918252602090912001546001600160a01b031614156122625750600192915050565b8061226c816142f6565b915050612217565b6006546001600160a01b0316331461229e5760405162461bcd60e51b8152600401610f489061413f565b60005b8151811015611a4f5760128282815181106122be576122be614351565b6020908102919091018101518254600181018455600093845291832090910180546001600160a01b0319166001600160a01b0390921691909117905582516011919084908490811061231257612312614351565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020546002612347919061422d565b6011600084848151811061235d5761235d614351565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080612394906142f6565b9150506122a1565b6000805b601554811015611ab457826001600160a01b0316601582815481106123c7576123c7614351565b6000918252602090912001546001600160a01b031614156123eb5750600192915050565b806123f5816142f6565b9150506123a0565b6000805b601954811015611ab457826001600160a01b03166019828154811061242857612428614351565b6000918252602090912001546001600160a01b0316141561244c5750600192915050565b80612456816142f6565b915050612401565b6000805b601854811015611ab457826001600160a01b03166018828154811061248957612489614351565b6000918252602090912001546001600160a01b031614156124ad5750600192915050565b806124b7816142f6565b915050612462565b60006001600160a01b03821661252a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610f48565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146125705760405162461bcd60e51b8152600401610f489061413f565b61257a6000613818565b565b601b8181548110610e3457600080fd5b6010543410156125ae5760405162461bcd60e51b8152600401610f4890614108565b600f5460ff1615156001146125d55760405162461bcd60e51b8152600401610f4890614174565b60006125df611ff0565b905061128533611a53565b6000805b601354811015611ab457826001600160a01b03166013828154811061261557612615614351565b6000918252602090912001546001600160a01b031614156126395750600192915050565b80612643816142f6565b9150506125ee565b6000805b601654811015611ab457826001600160a01b03166016828154811061267657612676614351565b6000918252602090912001546001600160a01b0316141561269a5750600192915050565b806126a4816142f6565b91505061264f565b6006546001600160a01b031633146126d65760405162461bcd60e51b8152600401610f489061413f565b60005b601e54811015611224576000601e82815481106126f8576126f8614351565b6000918252602090912001546001600160a01b0316905061271881611727565b5080612723816142f6565b9150506126d9565b6006546001600160a01b031633146127555760405162461bcd60e51b8152600401610f489061413f565b60005b8151811015611a4f57601882828151811061277557612775614351565b6020908102919091018101518254600181018455600093845291832090910180546001600160a01b0319166001600160a01b039092169190911790558251601191908490849081106127c9576127c9614351565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000205460026127fe919061422d565b6011600084848151811061281457612814614351565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550808061284b906142f6565b915050612758565b6000600b828154811061286857612868614351565b6000918252602090912001546001600160a01b031692915050565b606060018054610e5d906142bb565b6001600160a01b0382163314156128eb5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610f48565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60128181548110610e3457600080fd5b6006546001600160a01b031633146129915760405162461bcd60e51b8152600401610f489061413f565b60005b8151811015611a4f57601a8282815181106129b1576129b1614351565b6020908102919091018101518254600181018455600093845291832090910180546001600160a01b0319166001600160a01b03909216919091179055825160119190849084908110612a0557612a05614351565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020546002612a3a919061422d565b60116000848481518110612a5057612a50614351565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080612a87906142f6565b915050612994565b612a99338361358e565b612ab55760405162461bcd60e51b8152600401610f48906141ab565b612ac18484848461386a565b50505050565b601054341015612ae95760405162461bcd60e51b8152600401610f4890614108565b600f5460ff161515600114612b105760405162461bcd60e51b8152600401610f4890614174565b6000612b1a611ff0565b90506112853361245e565b6006546001600160a01b03163314612b4f5760405162461bcd60e51b8152600401610f489061413f565b601d80546001600160a01b0319166001600160a01b0392909216919091179055565b6060612b7c826133d0565b612be05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610f48565b6000612bea61389d565b90506000815111612c0a5760405180602001604052806000815250612c35565b80612c14846138ac565b604051602001612c25929190614037565b6040516020818303038152906040525b9392505050565b60198181548110610e3457600080fd5b6006546001600160a01b03163314612c765760405162461bcd60e51b8152600401610f489061413f565b600f805460ff1916911515919091179055565b60158181548110610e3457600080fd5b6006546001600160a01b03163314612cc35760405162461bcd60e51b8152600401610f489061413f565b600f80549115156101000261ff0019909216919091179055565b601c8181548110610e3457600080fd5b6006546001600160a01b03163314612d175760405162461bcd60e51b8152600401610f489061413f565b60005b8151811015611a4f576013828281518110612d3757612d37614351565b6020908102919091018101518254600181018455600093845291832090910180546001600160a01b0319166001600160a01b03909216919091179055825160119190849084908110612d8b57612d8b614351565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020546002612dc0919061422d565b60116000848481518110612dd657612dd6614351565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080612e0d906142f6565b915050612d1a565b6000805b601a54811015611ab457826001600160a01b0316601a8281548110612e4057612e40614351565b6000918252602090912001546001600160a01b03161415612e645750600192915050565b80612e6e816142f6565b915050612e19565b6006546001600160a01b03163314612ea05760405162461bcd60e51b8152600401610f489061413f565b60005b8151811015611a4f57601c828281518110612ec057612ec0614351565b6020908102919091018101518254600181018455600093845291832090910180546001600160a01b0319166001600160a01b03909216919091179055825160119190849084908110612f1457612f14614351565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020546002612f49919061422d565b60116000848481518110612f5f57612f5f614351565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080612f96906142f6565b915050612ea3565b601054341015612fc05760405162461bcd60e51b8152600401610f4890614108565b600f5460ff161515600114612fe75760405162461bcd60e51b8152600401610f4890614174565b6000612ff1611ff0565b90506112853361239c565b60138181548110610e3457600080fd5b60105434101561302e5760405162461bcd60e51b8152600401610f4890614108565b600f5460ff1615156001146130555760405162461bcd60e51b8152600401610f4890614174565b600061305f611ff0565b905061128533612e15565b6006546001600160a01b031633146130945760405162461bcd60e51b8152600401610f489061413f565b60005b8151811015611a4f5760158282815181106130b4576130b4614351565b6020908102919091018101518254600181018455600093845291832090910180546001600160a01b0319166001600160a01b0390921691909117905582516011919084908490811061310857613108614351565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002054600261313d919061422d565b6011600084848151811061315357613153614351565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550808061318a906142f6565b915050613097565b6006546001600160a01b031633146131bc5760405162461bcd60e51b8152600401610f489061413f565b6001600160a01b0381166132215760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610f48565b61122481613818565b6006546001600160a01b031633146132545760405162461bcd60e51b8152600401610f489061413f565b60005b8151811015611a4f57601682828151811061327457613274614351565b6020908102919091018101518254600181018455600093845291832090910180546001600160a01b0319166001600160a01b039092169190911790558251601191908490849081106132c8576132c8614351565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000205460026132fd919061422d565b6011600084848151811061331357613313614351565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550808061334a906142f6565b915050613257565b60148181548110610e3457600080fd5b6010543410156133845760405162461bcd60e51b8152600401610f4890614108565b600f5460ff1615156001146133ab5760405162461bcd60e51b8152600401610f4890614174565b60006133b5611ff0565b9050611285336123fd565b60188181548110610e3457600080fd5b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190613422826120e1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611a4f8282604051806020016040528060008152506139aa565b804710156134c55760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610f48565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114613512576040519150601f19603f3d011682016040523d82523d6000602084013e613517565b606091505b505090508061107e5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610f48565b6000613599826133d0565b6135fa5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610f48565b6000613605836120e1565b9050806001600160a01b0316846001600160a01b031614806136405750836001600160a01b031661363584610ee0565b6001600160a01b0316145b8061367057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661368b826120e1565b6001600160a01b0316146136f35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610f48565b6001600160a01b0382166137555760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610f48565b6137606000826133ed565b6001600160a01b0383166000908152600360205260408120805460019290613789908490614278565b90915550506001600160a01b03821660009081526003602052604081208054600192906137b790849061422d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b613875848484613678565b613881848484846139dd565b612ac15760405162461bcd60e51b8152600401610f48906140b6565b6060600d8054610e5d906142bb565b6060816138d05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156138fa57806138e4816142f6565b91506138f39050600a83614245565b91506138d4565b60008167ffffffffffffffff81111561391557613915614367565b6040519080825280601f01601f19166020018201604052801561393f576020820181803683370190505b5090505b841561367057613954600183614278565b9150613961600a86614311565b61396c90603061422d565b60f81b81838151811061398157613981614351565b60200101906001600160f81b031916908160001a9053506139a3600a86614245565b9450613943565b6139b48383613aea565b6139c160008484846139dd565b61107e5760405162461bcd60e51b8152600401610f48906140b6565b60006001600160a01b0384163b15613adf57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613a21903390899088908890600401614066565b602060405180830381600087803b158015613a3b57600080fd5b505af1925050508015613a6b575060408051601f3d908101601f19168201909252613a6891810190613f8c565b60015b613ac5573d808015613a99576040519150601f19603f3d011682016040523d82523d6000602084013e613a9e565b606091505b508051613abd5760405162461bcd60e51b8152600401610f48906140b6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050613670565b506001949350505050565b6001600160a01b038216613b405760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610f48565b613b49816133d0565b15613b965760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610f48565b6001600160a01b0382166000908152600360205260408120805460019290613bbf90849061422d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054613c29906142bb565b90600052602060002090601f016020900481019282613c4b5760008555613c91565b82601f10613c6457805160ff1916838001178555613c91565b82800160010185558215613c91579182015b82811115613c91578251825591602001919060010190613c76565b50613c9d929150613ca1565b5090565b5b80821115613c9d5760008155600101613ca2565b600067ffffffffffffffff831115613cd057613cd0614367565b613ce3601f8401601f19166020016141fc565b9050828152838383011115613cf757600080fd5b828260208301376000602084830101529392505050565b80358015158114613d1e57600080fd5b919050565b600060208284031215613d3557600080fd5b8135612c358161437d565b60008060408385031215613d5357600080fd5b8235613d5e8161437d565b91506020830135613d6e8161437d565b809150509250929050565b600080600060608486031215613d8e57600080fd5b8335613d998161437d565b92506020840135613da98161437d565b929592945050506040919091013590565b60008060008060808587031215613dd057600080fd5b8435613ddb8161437d565b93506020850135613deb8161437d565b925060408501359150606085013567ffffffffffffffff811115613e0e57600080fd5b8501601f81018713613e1f57600080fd5b613e2e87823560208401613cb6565b91505092959194509250565b60008060408385031215613e4d57600080fd5b8235613e588161437d565b9150613e6660208401613d0e565b90509250929050565b60008060408385031215613e8257600080fd5b8235613e8d8161437d565b946020939093013593505050565b60006020808385031215613eae57600080fd5b823567ffffffffffffffff80821115613ec657600080fd5b818501915085601f830112613eda57600080fd5b813581811115613eec57613eec614367565b8060051b9150613efd8483016141fc565b8181528481019084860184860187018a1015613f1857600080fd5b600095505b83861015613f475780359450613f328561437d565b84835260019590950194918601918601613f1d565b5098975050505050505050565b600060208284031215613f6657600080fd5b612c3582613d0e565b600060208284031215613f8157600080fd5b8135612c3581614392565b600060208284031215613f9e57600080fd5b8151612c3581614392565b600060208284031215613fbb57600080fd5b813567ffffffffffffffff811115613fd257600080fd5b8201601f81018413613fe357600080fd5b61367084823560208401613cb6565b60006020828403121561400457600080fd5b5035919050565b6000815180845261402381602086016020860161428f565b601f01601f19169290920160200192915050565b6000835161404981846020880161428f565b83519083019061405d81836020880161428f565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906140999083018461400b565b9695505050505050565b602081526000612c35602083018461400b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526017908201527f496e737566666369656e7420616d6f756e742073656e74000000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601b908201527f57686974656c69737465642053616c65204e6f74204163746976650000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561422557614225614367565b604052919050565b6000821982111561424057614240614325565b500190565b6000826142545761425461433b565b500490565b600081600019048311821515161561427357614273614325565b500290565b60008282101561428a5761428a614325565b500390565b60005b838110156142aa578181015183820152602001614292565b83811115612ac15750506000910152565b600181811c908216806142cf57607f821691505b602082108114156142f057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561430a5761430a614325565b5060010190565b6000826143205761432061433b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461122457600080fd5b6001600160e01b03198116811461122457600080fdfea2646970667358221220fa74081fd6d01dce5d446711465f6e61b07fe4f1cbe664fba015316b9a8690a864736f6c63430008070033

Deployed Bytecode

0x6080604052600436106104525760003560e01c806378ec7fed1161023d578063c97191bc11610138578063e33b7de3116100bb578063f2fde38b11610082578063f2fde38b14610d34578063f33f279414610d54578063f51f96dd14610d74578063f6da2fb014610d8a578063f98c4c1014610daa578063fbdbec7414610db257005b8063e33b7de314610c8e578063e3a51dcd14610ca3578063e435874414610cc3578063e985e9c514610ccb578063efdc8f6a14610d1457005b8063d5c27f20116100ff578063d5c27f2014610c06578063d7acc2f614610c26578063d9ceef0814610c46578063e0958fb514610c66578063e2628afa14610c8657005b8063c97191bc14610b50578063ca7ce3ec14610b70578063ce7c2ac214610b90578063d17a15d114610bc6578063d52cb86914610be657005b806395ab5aa5116101c0578063b0adb83911610187578063b0adb83914610ac8578063b88d4fde14610ae8578063bde44f4214610b08578063c25b9fd114610b10578063c87b56dd14610b3057005b806395ab5aa514610a1e57806395d89b4114610a3d5780639852595c14610a52578063a22cb46514610a88578063a2c4b7a714610aa857005b8063853828b611610204578063853828b61461099157806386a173ee146109a657806389e60c20146109c05780638b83209b146109e05780638da5cb5b14610a0057005b806378ec7fed14610913578063794265e4146109335780637a5937b21461093b5780637f46bc2d1461095b578063802e73f11461097b57005b80632997d5c21161034d57806364101a25116102d0578063684954fd11610297578063684954fd1461087e578063687d9de41461089e578063689a244f146108be57806370a08231146108de578063715018a6146108fe57005b806364101a25146107e957806364167fed146107f1578063651a6b8c146108115780636547ae0d1461083157806367aedf711461085157005b80633fa6f516116103145780633fa6f5161461076c57806342842e0e146107815780634faccd71146107a157806355f804b3146107a95780636352211e146107c957005b80632997d5c2146106ef5780632c5071901461070f5780632c8b60551461072f5780633a98ef39146107375780633f5a149e1461074c57005b806318160ddd116103d5578063217e499e1161039c578063217e499e146106675780632205a65a1461066f5780632217f3fc1461068f57806323b872dd146106af578063270790fa146106cf57005b806318160ddd146105c457806319165587146105e75780631919fed7146106075780631d1a3db1146106275780632009b3f41461064757005b80630a08a7d2116104195780630a08a7d21461056c5780630c62da8c14610574578063113d33431461057c578063119167f3146105845780631372c9fc146105a457005b806301ffc9a71461049d57806304078072146104d257806306fdde031461050a578063081812fc1461052c578063095ea7b31461054c57005b3661049b577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b005b3480156104a957600080fd5b506104bd6104b8366004613f6f565b610dd2565b60405190151581526020015b60405180910390f35b3480156104de57600080fd5b506104f26104ed366004613ff2565b610e24565b6040516001600160a01b0390911681526020016104c9565b34801561051657600080fd5b5061051f610e4e565b6040516104c991906140a3565b34801561053857600080fd5b506104f2610547366004613ff2565b610ee0565b34801561055857600080fd5b5061049b610567366004613e6f565b610f6d565b61049b611083565b61049b611227565b61049b611413565b34801561059057600080fd5b506104f261059f366004613ff2565b611471565b3480156105b057600080fd5b5061049b6105bf366004613d23565b611481565b3480156105d057600080fd5b506105d9611717565b6040519081526020016104c9565b3480156105f357600080fd5b5061049b610602366004613d23565b611727565b34801561061357600080fd5b5061049b610622366004613ff2565b6118f8565b34801561063357600080fd5b5061049b610642366004613e9b565b611927565b34801561065357600080fd5b506104bd610662366004613d23565b611a53565b61049b611abd565b34801561067b57600080fd5b5061049b61068a366004613e9b565b611b1b565b34801561069b57600080fd5b5061049b6106aa366004613e9b565b611c43565b3480156106bb57600080fd5b5061049b6106ca366004613d79565b611d6b565b3480156106db57600080fd5b5061049b6106ea366004613e9b565b611d9c565b3480156106fb57600080fd5b506104bd61070a366004613d23565b611ec4565b34801561071b57600080fd5b506104f261072a366004613ff2565b611f25565b61049b611f35565b34801561074357600080fd5b506007546105d9565b34801561075857600080fd5b506104bd610767366004613d23565b611f8f565b34801561077857600080fd5b506105d9611ff0565b34801561078d57600080fd5b5061049b61079c366004613d79565b61202b565b61049b612046565b3480156107b557600080fd5b5061049b6107c4366004613fa9565b6120a4565b3480156107d557600080fd5b506104f26107e4366004613ff2565b6120e1565b61049b612158565b3480156107fd57600080fd5b506104bd61080c366004613d23565b6121b2565b34801561081d57600080fd5b506104bd61082c366004613d23565b612213565b34801561083d57600080fd5b5061049b61084c366004613e9b565b612274565b34801561085d57600080fd5b506105d961086c366004613d23565b60116020526000908152604090205481565b34801561088a57600080fd5b506104bd610899366004613d23565b61239c565b3480156108aa57600080fd5b506104bd6108b9366004613d23565b6123fd565b3480156108ca57600080fd5b506104bd6108d9366004613d23565b61245e565b3480156108ea57600080fd5b506105d96108f9366004613d23565b6124bf565b34801561090a57600080fd5b5061049b612546565b34801561091f57600080fd5b506104f261092e366004613ff2565b61257c565b61049b61258c565b34801561094757600080fd5b506104bd610956366004613d23565b6125ea565b34801561096757600080fd5b506104bd610976366004613d23565b61264b565b34801561098757600080fd5b506105d9612b6781565b34801561099d57600080fd5b5061049b6126ac565b3480156109b257600080fd5b50600f546104bd9060ff1681565b3480156109cc57600080fd5b5061049b6109db366004613e9b565b61272b565b3480156109ec57600080fd5b506104f26109fb366004613ff2565b612853565b348015610a0c57600080fd5b506006546001600160a01b03166104f2565b348015610a2a57600080fd5b50600f546104bd90610100900460ff1681565b348015610a4957600080fd5b5061051f612883565b348015610a5e57600080fd5b506105d9610a6d366004613d23565b6001600160a01b03166000908152600a602052604090205490565b348015610a9457600080fd5b5061049b610aa3366004613e3a565b612892565b348015610ab457600080fd5b506104f2610ac3366004613ff2565b612957565b348015610ad457600080fd5b5061049b610ae3366004613e9b565b612967565b348015610af457600080fd5b5061049b610b03366004613dba565b612a8f565b61049b612ac7565b348015610b1c57600080fd5b5061049b610b2b366004613d23565b612b25565b348015610b3c57600080fd5b5061051f610b4b366004613ff2565b612b71565b348015610b5c57600080fd5b506104f2610b6b366004613ff2565b612c3c565b348015610b7c57600080fd5b5061049b610b8b366004613f54565b612c4c565b348015610b9c57600080fd5b506105d9610bab366004613d23565b6001600160a01b031660009081526009602052604090205490565b348015610bd257600080fd5b506104f2610be1366004613ff2565b612c89565b348015610bf257600080fd5b5061049b610c01366004613f54565b612c99565b348015610c1257600080fd5b506104f2610c21366004613ff2565b612cdd565b348015610c3257600080fd5b5061049b610c41366004613e9b565b612ced565b348015610c5257600080fd5b506104bd610c61366004613d23565b612e15565b348015610c7257600080fd5b5061049b610c81366004613e9b565b612e76565b61049b612f9e565b348015610c9a57600080fd5b506008546105d9565b348015610caf57600080fd5b506104f2610cbe366004613ff2565b612ffc565b61049b61300c565b348015610cd757600080fd5b506104bd610ce6366004613d40565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610d2057600080fd5b5061049b610d2f366004613e9b565b61306a565b348015610d4057600080fd5b5061049b610d4f366004613d23565b613192565b348015610d6057600080fd5b5061049b610d6f366004613e9b565b61322a565b348015610d8057600080fd5b506105d960105481565b348015610d9657600080fd5b506104f2610da5366004613ff2565b613352565b61049b613362565b348015610dbe57600080fd5b506104f2610dcd366004613ff2565b6133c0565b60006001600160e01b031982166380ac58cd60e01b1480610e0357506001600160e01b03198216635b5e139f60e01b145b80610e1e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b601a8181548110610e3457600080fd5b6000918252602090912001546001600160a01b0316905081565b606060008054610e5d906142bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610e89906142bb565b8015610ed65780601f10610eab57610100808354040283529160200191610ed6565b820191906000526020600020905b815481529060010190602001808311610eb957829003601f168201915b5050505050905090565b6000610eeb826133d0565b610f515760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610f78826120e1565b9050806001600160a01b0316836001600160a01b03161415610fe65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610f48565b336001600160a01b038216148061100257506110028133610ce6565b6110745760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610f48565b61107e83836133ed565b505050565b6010543410156110a55760405162461bcd60e51b8152600401610f4890614108565b600f5460ff6101009091041615156001146110fb5760405162461bcd60e51b81526020600482015260166024820152754e6f726d616c2053616c65204e6f742041637469766560501b6044820152606401610f48565b601d546040516001600160a01b03909116903480156108fc02916000818181858888f1935050505061116f5760405162461bcd60e51b815260206004820152601e60248201527f526563656965766572206d7573742062652074686520636f6e747261637400006044820152606401610f48565b612b6761117b600e5490565b106111b85760405162461bcd60e51b815260206004820152600d60248201526c4174204d617820537570706c7960981b6044820152606401610f48565b60006111c2611ff0565b90506111cd816133d0565b1561120c5760405162461bcd60e51b815260206004820152600f60248201526e546f6b656e2049442045786973747360881b6044820152606401610f48565b611216338261345b565b611224600e80546001019055565b50565b6010543410156112495760405162461bcd60e51b8152600401610f4890614108565b600f5460ff1615156001146112705760405162461bcd60e51b8152600401610f4890614174565b600061127a611ff0565b905061128533611ec4565b6112c45760405162461bcd60e51b815260206004820152601060248201526f4e6f7420496e2047726f7570204f6e6560801b6044820152606401610f48565b601d546040516001600160a01b03909116903480156108fc02916000818181858888f193505050506113385760405162461bcd60e51b815260206004820152601e60248201527f526563656965766572206d7573742062652074686520636f6e747261637400006044820152606401610f48565b612b67611344600e5490565b106113815760405162461bcd60e51b815260206004820152600d60248201526c4174204d617820537570706c7960981b6044820152606401610f48565b33600090815260116020526040902054600111156113da5760405162461bcd60e51b8152602060048201526016602482015275115e18d959591cc8105b1bdd1d195908105b5bdd5b9d60521b6044820152606401610f48565b336000908152601160205260409020546113f690600190614278565b33600081815260116020526040902091909155611216908261345b565b6010543410156114355760405162461bcd60e51b8152600401610f4890614108565b600f5460ff16151560011461145c5760405162461bcd60e51b8152600401610f4890614174565b6000611466611ff0565b90506112853361264b565b60178181548110610e3457600080fd5b6006546001600160a01b031633146114ab5760405162461bcd60e51b8152600401610f489061413f565b6012805460018181019092557fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34440180546001600160a01b039093166001600160a01b03199384168117909155601380548084019091557f66de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a090018054841682179055601480548084019091557fce6d7b5282bd9a3661ae061feed1dbda4e52ab073b1f9285be6e155d9c38d4ec018054841682179055601580548084019091557f55f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec475018054841682179055601680548084019091557fd833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b5124289018054841682179055601780548084019091557fc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c15018054841682179055601880548084019091557fb13d2d76d1f4b7be834882e410b3e3a8afaf69f83600ae24db354391d2378d2e018054841682179055601980548084019091557f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c9695018054841682179055601a80548084019091557f057c384a7d1c54f3a1b2e5e67b2617b8224fdfd1ea7234eea573a6ff665ff63e018054841682179055601b80548084019091557f3ad8aa4f87544323a9d1e5dd902f40c356527a7955687113db5f9a85ad579dc1018054841682179055601c805492830190557f0e4562a10381dec21b205ed72637e6b1b523bdd0e4d4d50af5cd23dd4500a21190910180549092168117909155600090815260116020526040902061012b9055565b6000611722600e5490565b905090565b6001600160a01b03811660009081526009602052604090205461179b5760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b6064820152608401610f48565b6000600854476117ab919061422d565b6001600160a01b0383166000908152600a602090815260408083205460075460099093529083205493945091926117e29085614259565b6117ec9190614245565b6117f69190614278565b9050806118595760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b6064820152608401610f48565b6001600160a01b0383166000908152600a602052604090205461187d90829061422d565b6001600160a01b0384166000908152600a60205260409020556008546118a490829061422d565b6008556118b18382613475565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b6006546001600160a01b031633146119225760405162461bcd60e51b8152600401610f489061413f565b601055565b6006546001600160a01b031633146119515760405162461bcd60e51b8152600401610f489061413f565b60005b8151811015611a4f57601982828151811061197157611971614351565b6020908102919091018101518254600181018455600093845291832090910180546001600160a01b0319166001600160a01b039092169190911790558251601191908490849081106119c5576119c5614351565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000205460026119fa919061422d565b60116000848481518110611a1057611a10614351565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080611a47906142f6565b915050611954565b5050565b6000805b601754811015611ab457826001600160a01b031660178281548110611a7e57611a7e614351565b6000918252602090912001546001600160a01b03161415611aa25750600192915050565b80611aac816142f6565b915050611a57565b50600092915050565b601054341015611adf5760405162461bcd60e51b8152600401610f4890614108565b600f5460ff161515600114611b065760405162461bcd60e51b8152600401610f4890614174565b6000611b10611ff0565b9050611285336125ea565b6006546001600160a01b03163314611b455760405162461bcd60e51b8152600401610f489061413f565b60005b8151811015611a4f576014828281518110611b6557611b65614351565b6020908102919091018101518254600181018455600093845291832090910180546001600160a01b0319166001600160a01b03909216919091179055825160119190849084908110611bb957611bb9614351565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020546002611bee919061422d565b60116000848481518110611c0457611c04614351565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080611c3b906142f6565b915050611b48565b6006546001600160a01b03163314611c6d5760405162461bcd60e51b8152600401610f489061413f565b60005b8151811015611a4f576017828281518110611c8d57611c8d614351565b6020908102919091018101518254600181018455600093845291832090910180546001600160a01b0319166001600160a01b03909216919091179055825160119190849084908110611ce157611ce1614351565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020546002611d16919061422d565b60116000848481518110611d2c57611d2c614351565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080611d63906142f6565b915050611c70565b611d75338261358e565b611d915760405162461bcd60e51b8152600401610f48906141ab565b61107e838383613678565b6006546001600160a01b03163314611dc65760405162461bcd60e51b8152600401610f489061413f565b60005b8151811015611a4f57601b828281518110611de657611de6614351565b6020908102919091018101518254600181018455600093845291832090910180546001600160a01b0319166001600160a01b03909216919091179055825160119190849084908110611e3a57611e3a614351565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020546002611e6f919061422d565b60116000848481518110611e8557611e85614351565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080611ebc906142f6565b915050611dc9565b6000805b601454811015611ab457826001600160a01b031660148281548110611eef57611eef614351565b6000918252602090912001546001600160a01b03161415611f135750600192915050565b80611f1d816142f6565b915050611ec8565b60168181548110610e3457600080fd5b601054341015611f575760405162461bcd60e51b8152600401610f4890614108565b600f5460ff161515600114611f7e5760405162461bcd60e51b8152600401610f4890614174565b6000611f88611ff0565b9050611285335b6000805b601c54811015611ab457826001600160a01b0316601c8281548110611fba57611fba614351565b6000918252602090912001546001600160a01b03161415611fde5750600192915050565b80611fe8816142f6565b915050611f93565b600060015b612b6781101561202357612008816133d0565b61201157919050565b8061201b816142f6565b915050611ff5565b506000905090565b61107e83838360405180602001604052806000815250612a8f565b6010543410156120685760405162461bcd60e51b8152600401610f4890614108565b600f5460ff16151560011461208f5760405162461bcd60e51b8152600401610f4890614174565b6000612099611ff0565b905061128533612213565b6006546001600160a01b031633146120ce5760405162461bcd60e51b8152600401610f489061413f565b8051611a4f90600d906020840190613c1d565b6000818152600260205260408120546001600160a01b031680610e1e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610f48565b60105434101561217a5760405162461bcd60e51b8152600401610f4890614108565b600f5460ff1615156001146121a15760405162461bcd60e51b8152600401610f4890614174565b60006121ab611ff0565b9050611285335b6000805b601b54811015611ab457826001600160a01b0316601b82815481106121dd576121dd614351565b6000918252602090912001546001600160a01b031614156122015750600192915050565b8061220b816142f6565b9150506121b6565b6000805b601254811015611ab457826001600160a01b03166012828154811061223e5761223e614351565b6000918252602090912001546001600160a01b031614156122625750600192915050565b8061226c816142f6565b915050612217565b6006546001600160a01b0316331461229e5760405162461bcd60e51b8152600401610f489061413f565b60005b8151811015611a4f5760128282815181106122be576122be614351565b6020908102919091018101518254600181018455600093845291832090910180546001600160a01b0319166001600160a01b0390921691909117905582516011919084908490811061231257612312614351565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020546002612347919061422d565b6011600084848151811061235d5761235d614351565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080612394906142f6565b9150506122a1565b6000805b601554811015611ab457826001600160a01b0316601582815481106123c7576123c7614351565b6000918252602090912001546001600160a01b031614156123eb5750600192915050565b806123f5816142f6565b9150506123a0565b6000805b601954811015611ab457826001600160a01b03166019828154811061242857612428614351565b6000918252602090912001546001600160a01b0316141561244c5750600192915050565b80612456816142f6565b915050612401565b6000805b601854811015611ab457826001600160a01b03166018828154811061248957612489614351565b6000918252602090912001546001600160a01b031614156124ad5750600192915050565b806124b7816142f6565b915050612462565b60006001600160a01b03821661252a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610f48565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146125705760405162461bcd60e51b8152600401610f489061413f565b61257a6000613818565b565b601b8181548110610e3457600080fd5b6010543410156125ae5760405162461bcd60e51b8152600401610f4890614108565b600f5460ff1615156001146125d55760405162461bcd60e51b8152600401610f4890614174565b60006125df611ff0565b905061128533611a53565b6000805b601354811015611ab457826001600160a01b03166013828154811061261557612615614351565b6000918252602090912001546001600160a01b031614156126395750600192915050565b80612643816142f6565b9150506125ee565b6000805b601654811015611ab457826001600160a01b03166016828154811061267657612676614351565b6000918252602090912001546001600160a01b0316141561269a5750600192915050565b806126a4816142f6565b91505061264f565b6006546001600160a01b031633146126d65760405162461bcd60e51b8152600401610f489061413f565b60005b601e54811015611224576000601e82815481106126f8576126f8614351565b6000918252602090912001546001600160a01b0316905061271881611727565b5080612723816142f6565b9150506126d9565b6006546001600160a01b031633146127555760405162461bcd60e51b8152600401610f489061413f565b60005b8151811015611a4f57601882828151811061277557612775614351565b6020908102919091018101518254600181018455600093845291832090910180546001600160a01b0319166001600160a01b039092169190911790558251601191908490849081106127c9576127c9614351565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000205460026127fe919061422d565b6011600084848151811061281457612814614351565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550808061284b906142f6565b915050612758565b6000600b828154811061286857612868614351565b6000918252602090912001546001600160a01b031692915050565b606060018054610e5d906142bb565b6001600160a01b0382163314156128eb5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610f48565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60128181548110610e3457600080fd5b6006546001600160a01b031633146129915760405162461bcd60e51b8152600401610f489061413f565b60005b8151811015611a4f57601a8282815181106129b1576129b1614351565b6020908102919091018101518254600181018455600093845291832090910180546001600160a01b0319166001600160a01b03909216919091179055825160119190849084908110612a0557612a05614351565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020546002612a3a919061422d565b60116000848481518110612a5057612a50614351565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080612a87906142f6565b915050612994565b612a99338361358e565b612ab55760405162461bcd60e51b8152600401610f48906141ab565b612ac18484848461386a565b50505050565b601054341015612ae95760405162461bcd60e51b8152600401610f4890614108565b600f5460ff161515600114612b105760405162461bcd60e51b8152600401610f4890614174565b6000612b1a611ff0565b90506112853361245e565b6006546001600160a01b03163314612b4f5760405162461bcd60e51b8152600401610f489061413f565b601d80546001600160a01b0319166001600160a01b0392909216919091179055565b6060612b7c826133d0565b612be05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610f48565b6000612bea61389d565b90506000815111612c0a5760405180602001604052806000815250612c35565b80612c14846138ac565b604051602001612c25929190614037565b6040516020818303038152906040525b9392505050565b60198181548110610e3457600080fd5b6006546001600160a01b03163314612c765760405162461bcd60e51b8152600401610f489061413f565b600f805460ff1916911515919091179055565b60158181548110610e3457600080fd5b6006546001600160a01b03163314612cc35760405162461bcd60e51b8152600401610f489061413f565b600f80549115156101000261ff0019909216919091179055565b601c8181548110610e3457600080fd5b6006546001600160a01b03163314612d175760405162461bcd60e51b8152600401610f489061413f565b60005b8151811015611a4f576013828281518110612d3757612d37614351565b6020908102919091018101518254600181018455600093845291832090910180546001600160a01b0319166001600160a01b03909216919091179055825160119190849084908110612d8b57612d8b614351565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020546002612dc0919061422d565b60116000848481518110612dd657612dd6614351565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080612e0d906142f6565b915050612d1a565b6000805b601a54811015611ab457826001600160a01b0316601a8281548110612e4057612e40614351565b6000918252602090912001546001600160a01b03161415612e645750600192915050565b80612e6e816142f6565b915050612e19565b6006546001600160a01b03163314612ea05760405162461bcd60e51b8152600401610f489061413f565b60005b8151811015611a4f57601c828281518110612ec057612ec0614351565b6020908102919091018101518254600181018455600093845291832090910180546001600160a01b0319166001600160a01b03909216919091179055825160119190849084908110612f1457612f14614351565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020546002612f49919061422d565b60116000848481518110612f5f57612f5f614351565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080612f96906142f6565b915050612ea3565b601054341015612fc05760405162461bcd60e51b8152600401610f4890614108565b600f5460ff161515600114612fe75760405162461bcd60e51b8152600401610f4890614174565b6000612ff1611ff0565b90506112853361239c565b60138181548110610e3457600080fd5b60105434101561302e5760405162461bcd60e51b8152600401610f4890614108565b600f5460ff1615156001146130555760405162461bcd60e51b8152600401610f4890614174565b600061305f611ff0565b905061128533612e15565b6006546001600160a01b031633146130945760405162461bcd60e51b8152600401610f489061413f565b60005b8151811015611a4f5760158282815181106130b4576130b4614351565b6020908102919091018101518254600181018455600093845291832090910180546001600160a01b0319166001600160a01b0390921691909117905582516011919084908490811061310857613108614351565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002054600261313d919061422d565b6011600084848151811061315357613153614351565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550808061318a906142f6565b915050613097565b6006546001600160a01b031633146131bc5760405162461bcd60e51b8152600401610f489061413f565b6001600160a01b0381166132215760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610f48565b61122481613818565b6006546001600160a01b031633146132545760405162461bcd60e51b8152600401610f489061413f565b60005b8151811015611a4f57601682828151811061327457613274614351565b6020908102919091018101518254600181018455600093845291832090910180546001600160a01b0319166001600160a01b039092169190911790558251601191908490849081106132c8576132c8614351565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000205460026132fd919061422d565b6011600084848151811061331357613313614351565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550808061334a906142f6565b915050613257565b60148181548110610e3457600080fd5b6010543410156133845760405162461bcd60e51b8152600401610f4890614108565b600f5460ff1615156001146133ab5760405162461bcd60e51b8152600401610f4890614174565b60006133b5611ff0565b9050611285336123fd565b60188181548110610e3457600080fd5b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190613422826120e1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611a4f8282604051806020016040528060008152506139aa565b804710156134c55760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610f48565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114613512576040519150601f19603f3d011682016040523d82523d6000602084013e613517565b606091505b505090508061107e5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610f48565b6000613599826133d0565b6135fa5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610f48565b6000613605836120e1565b9050806001600160a01b0316846001600160a01b031614806136405750836001600160a01b031661363584610ee0565b6001600160a01b0316145b8061367057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661368b826120e1565b6001600160a01b0316146136f35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610f48565b6001600160a01b0382166137555760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610f48565b6137606000826133ed565b6001600160a01b0383166000908152600360205260408120805460019290613789908490614278565b90915550506001600160a01b03821660009081526003602052604081208054600192906137b790849061422d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b613875848484613678565b613881848484846139dd565b612ac15760405162461bcd60e51b8152600401610f48906140b6565b6060600d8054610e5d906142bb565b6060816138d05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156138fa57806138e4816142f6565b91506138f39050600a83614245565b91506138d4565b60008167ffffffffffffffff81111561391557613915614367565b6040519080825280601f01601f19166020018201604052801561393f576020820181803683370190505b5090505b841561367057613954600183614278565b9150613961600a86614311565b61396c90603061422d565b60f81b81838151811061398157613981614351565b60200101906001600160f81b031916908160001a9053506139a3600a86614245565b9450613943565b6139b48383613aea565b6139c160008484846139dd565b61107e5760405162461bcd60e51b8152600401610f48906140b6565b60006001600160a01b0384163b15613adf57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613a21903390899088908890600401614066565b602060405180830381600087803b158015613a3b57600080fd5b505af1925050508015613a6b575060408051601f3d908101601f19168201909252613a6891810190613f8c565b60015b613ac5573d808015613a99576040519150601f19603f3d011682016040523d82523d6000602084013e613a9e565b606091505b508051613abd5760405162461bcd60e51b8152600401610f48906140b6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050613670565b506001949350505050565b6001600160a01b038216613b405760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610f48565b613b49816133d0565b15613b965760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610f48565b6001600160a01b0382166000908152600360205260408120805460019290613bbf90849061422d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054613c29906142bb565b90600052602060002090601f016020900481019282613c4b5760008555613c91565b82601f10613c6457805160ff1916838001178555613c91565b82800160010185558215613c91579182015b82811115613c91578251825591602001919060010190613c76565b50613c9d929150613ca1565b5090565b5b80821115613c9d5760008155600101613ca2565b600067ffffffffffffffff831115613cd057613cd0614367565b613ce3601f8401601f19166020016141fc565b9050828152838383011115613cf757600080fd5b828260208301376000602084830101529392505050565b80358015158114613d1e57600080fd5b919050565b600060208284031215613d3557600080fd5b8135612c358161437d565b60008060408385031215613d5357600080fd5b8235613d5e8161437d565b91506020830135613d6e8161437d565b809150509250929050565b600080600060608486031215613d8e57600080fd5b8335613d998161437d565b92506020840135613da98161437d565b929592945050506040919091013590565b60008060008060808587031215613dd057600080fd5b8435613ddb8161437d565b93506020850135613deb8161437d565b925060408501359150606085013567ffffffffffffffff811115613e0e57600080fd5b8501601f81018713613e1f57600080fd5b613e2e87823560208401613cb6565b91505092959194509250565b60008060408385031215613e4d57600080fd5b8235613e588161437d565b9150613e6660208401613d0e565b90509250929050565b60008060408385031215613e8257600080fd5b8235613e8d8161437d565b946020939093013593505050565b60006020808385031215613eae57600080fd5b823567ffffffffffffffff80821115613ec657600080fd5b818501915085601f830112613eda57600080fd5b813581811115613eec57613eec614367565b8060051b9150613efd8483016141fc565b8181528481019084860184860187018a1015613f1857600080fd5b600095505b83861015613f475780359450613f328561437d565b84835260019590950194918601918601613f1d565b5098975050505050505050565b600060208284031215613f6657600080fd5b612c3582613d0e565b600060208284031215613f8157600080fd5b8135612c3581614392565b600060208284031215613f9e57600080fd5b8151612c3581614392565b600060208284031215613fbb57600080fd5b813567ffffffffffffffff811115613fd257600080fd5b8201601f81018413613fe357600080fd5b61367084823560208401613cb6565b60006020828403121561400457600080fd5b5035919050565b6000815180845261402381602086016020860161428f565b601f01601f19169290920160200192915050565b6000835161404981846020880161428f565b83519083019061405d81836020880161428f565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906140999083018461400b565b9695505050505050565b602081526000612c35602083018461400b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526017908201527f496e737566666369656e7420616d6f756e742073656e74000000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601b908201527f57686974656c69737465642053616c65204e6f74204163746976650000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561422557614225614367565b604052919050565b6000821982111561424057614240614325565b500190565b6000826142545761425461433b565b500490565b600081600019048311821515161561427357614273614325565b500290565b60008282101561428a5761428a614325565b500390565b60005b838110156142aa578181015183820152602001614292565b83811115612ac15750506000910152565b600181811c908216806142cf57607f821691505b602082108114156142f057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561430a5761430a614325565b5060010190565b6000826143205761432061433b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461122457600080fd5b6001600160e01b03198116811461122457600080fdfea2646970667358221220fa74081fd6d01dce5d446711465f6e61b07fe4f1cbe664fba015316b9a8690a864736f6c63430008070033

Deployed Bytecode Sourcemap

211:18096:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2610:40:14;666:10:1;2610:40:14;;;-1:-1:-1;;;;;7116:32:17;;;7098:51;;2640:9:14;7180:2:17;7165:18;;7158:34;7071:18;2610:40:14;;;;;;;211:18096:12;;;1431:300:4;;;;;;;;;;-1:-1:-1;1431:300:4;;;;;:::i;:::-;;:::i;:::-;;;8140:14:17;;8133:22;8115:41;;8103:2;8088:18;1431:300:4;;;;;;;;1102:30:12;;;;;;;;;;-1:-1:-1;1102:30:12;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6872:32:17;;;6854:51;;6842:2;6827:18;1102:30:12;6708:203:17;2349:98:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3950:217::-;;;;;;;;;;-1:-1:-1;3950:217:4;;;;;:::i;:::-;;:::i;3488:401::-;;;;;;;;;;-1:-1:-1;3488:401:4;;;;;:::i;:::-;;:::i;16863:540:12:-;;;:::i;10296:721::-;;;:::i;11756:719::-;;;:::i;993:29::-;;;;;;;;;;-1:-1:-1;993:29:12;;;;;:::i;:::-;;:::i;5339:520::-;;;;;;;;;;-1:-1:-1;5339:520:12;;;;;:::i;:::-;;:::i;17643:104::-;;;;;;;;;;;;;:::i;:::-;;;19323:25:17;;;19311:2;19296:18;17643:104:12;19177:177:17;3784:600:14;;;;;;;;;;-1:-1:-1;3784:600:14;;;;;:::i;:::-;;:::i;17991:102:12:-;;;;;;;;;;-1:-1:-1;17991:102:12;;;;;:::i;:::-;;:::i;4197:278::-;;;;;;;;;;-1:-1:-1;4197:278:12;;;;;:::i;:::-;;:::i;7216:257::-;;;;;;;;;;-1:-1:-1;7216:257:12;;;;;:::i;:::-;;:::i;9569:717::-;;;:::i;2774:275::-;;;;;;;;;;-1:-1:-1;2774:275:12;;;;;:::i;:::-;;:::i;3628:274::-;;;;;;;;;;-1:-1:-1;3628:274:12;;;;;:::i;:::-;;:::i;4814:330:4:-;;;;;;;;;;-1:-1:-1;4814:330:4;;;;;:::i;:::-;;:::i;4768:274:12:-;;;;;;;;;;-1:-1:-1;4768:274:12;;;;;:::i;:::-;;:::i;6403:263::-;;;;;;;;;;-1:-1:-1;6403:263:12;;;;;:::i;:::-;;:::i;957:30::-;;;;;;;;;;-1:-1:-1;957:30:12;;;;;:::i;:::-;;:::i;16130:723::-;;;:::i;2735:91:14:-;;;;;;;;;;-1:-1:-1;2807:12:14;;2735:91;;8566:266:12;;;;;;;;;;-1:-1:-1;8566:266:12;;;;;:::i;:::-;;:::i;17413:220::-;;;;;;;;;;;;;:::i;5210:179:4:-;;;;;;;;;;-1:-1:-1;5210:179:4;;;;;:::i;:::-;;:::i;8842:717:12:-;;;:::i;1831:113::-;;;;;;;;;;-1:-1:-1;1831:113:12;;;;;:::i;:::-;;:::i;2052:235:4:-;;;;;;;;;;-1:-1:-1;2052:235:4;;;;;:::i;:::-;;:::i;15403:717:12:-;;;:::i;8299:257::-;;;;;;;;;;-1:-1:-1;8299:257:12;;;;;:::i;:::-;;:::i;5869:::-;;;;;;;;;;-1:-1:-1;5869:257:12;;;;;:::i;:::-;;:::i;2209:271::-;;;;;;;;;;-1:-1:-1;2209:271:12;;;;;:::i;:::-;;:::i;747:56::-;;;;;;;;;;-1:-1:-1;747:56:12;;;;;:::i;:::-;;;;;;;;;;;;;;6676:260;;;;;;;;;;-1:-1:-1;6676:260:12;;;;;:::i;:::-;;:::i;7756:263::-;;;;;;;;;;-1:-1:-1;7756:263:12;;;;;:::i;:::-;;:::i;7483:::-;;;;;;;;;;-1:-1:-1;7483:263:12;;;;;:::i;:::-;;:::i;1790:205:4:-;;;;;;;;;;-1:-1:-1;1790:205:4;;;;;:::i;:::-;;:::i;1598:92:13:-;;;;;;;;;;;;;:::i;1138:29:12:-;;;;;;;;;;-1:-1:-1;1138:29:12;;;;;:::i;:::-;;:::i;12485:717::-;;;:::i;6136:257::-;;;;;;;;;;-1:-1:-1;6136:257:12;;;;;:::i;:::-;;:::i;6946:260::-;;;;;;;;;;-1:-1:-1;6946:260:12;;;;;:::i;:::-;;:::i;581:49::-;;;;;;;;;;;;625:5;581:49;;18103:197;;;;;;;;;;;;;:::i;636:33::-;;;;;;;;;;-1:-1:-1;636:33:12;;;;;;;;3912:275;;;;;;;;;;-1:-1:-1;3912:275:12;;;;;:::i;:::-;;:::i;3490:100:14:-;;;;;;;;;;-1:-1:-1;3490:100:14;;;;;:::i;:::-;;:::i;966:85:13:-;;;;;;;;;;-1:-1:-1;1038:6:13;;-1:-1:-1;;;;;1038:6:13;966:85;;675:31:12;;;;;;;;;;-1:-1:-1;675:31:12;;;;;;;;;;;2511:102:4;;;;;;;;;;;;;:::i;3295:109:14:-;;;;;;;;;;-1:-1:-1;3295:109:14;;;;;:::i;:::-;-1:-1:-1;;;;;3379:18:14;3353:7;3379:18;;;:9;:18;;;;;;;3295:109;4234:290:4;;;;;;;;;;-1:-1:-1;4234:290:4;;;;;:::i;:::-;;:::i;814:29:12:-;;;;;;;;;;-1:-1:-1;814:29:12;;;;;:::i;:::-;;:::i;4485:273::-;;;;;;;;;;-1:-1:-1;4485:273:12;;;;;:::i;:::-;;:::i;5455:320:4:-;;;;;;;;;;-1:-1:-1;5455:320:4;;;;;:::i;:::-;;:::i;13212:721:12:-;;;:::i;2079:120::-;;;;;;;;;;-1:-1:-1;2079:120:12;;;;;:::i;:::-;;:::i;2679:329:4:-;;;;;;;;;;-1:-1:-1;2679:329:4;;;;;:::i;:::-;;:::i;1065:31:12:-;;;;;;;;;;-1:-1:-1;1065:31:12;;;;;:::i;:::-;;:::i;17757:109::-;;;;;;;;;;-1:-1:-1;17757:109:12;;;;;:::i;:::-;;:::i;3096:105:14:-;;;;;;;;;;-1:-1:-1;3096:105:14;;;;;:::i;:::-;-1:-1:-1;;;;;3178:16:14;3152:7;3178:16;;;:7;:16;;;;;;;3096:105;921:30:12;;;;;;;;;;-1:-1:-1;921:30:12;;;;;:::i;:::-;;:::i;17876:105::-;;;;;;;;;;-1:-1:-1;17876:105:12;;;;;:::i;:::-;;:::i;1173:32::-;;;;;;;;;;-1:-1:-1;1173:32:12;;;;;:::i;:::-;;:::i;2490:274::-;;;;;;;;;;-1:-1:-1;2490:274:12;;;;;:::i;:::-;;:::i;8029:260::-;;;;;;;;;;-1:-1:-1;8029:260:12;;;;;:::i;:::-;;:::i;5052:277::-;;;;;;;;;;-1:-1:-1;5052:277:12;;;;;:::i;:::-;;:::i;11027:719::-;;;:::i;2915:95:14:-;;;;;;;;;;-1:-1:-1;2989:14:14;;2915:95;;849:29:12;;;;;;;;;;-1:-1:-1;849:29:12;;;;;:::i;:::-;;:::i;14674:719::-;;;:::i;4590:162:4:-;;;;;;;;;;-1:-1:-1;4590:162:4;;;;;:::i;:::-;-1:-1:-1;;;;;4710:25:4;;;4687:4;4710:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4590:162;3059:276:12;;;;;;;;;;-1:-1:-1;3059:276:12;;;;;:::i;:::-;;:::i;1839:189:13:-;;;;;;;;;;-1:-1:-1;1839:189:13;;;;;:::i;:::-;;:::i;3345:273:12:-;;;;;;;;;;-1:-1:-1;3345:273:12;;;;;:::i;:::-;;:::i;712:24::-;;;;;;;;;;;;;;;;884:31;;;;;;;;;;-1:-1:-1;884:31:12;;;;;:::i;:::-;;:::i;13943:721::-;;;:::i;1028:31::-;;;;;;;;;;-1:-1:-1;1028:31:12;;;;;:::i;:::-;;:::i;1431:300:4:-;1533:4;-1:-1:-1;;;;;;1568:40:4;;-1:-1:-1;;;1568:40:4;;:104;;-1:-1:-1;;;;;;;1624:48:4;;-1:-1:-1;;;1624:48:4;1568:104;:156;;;-1:-1:-1;;;;;;;;;;871:40:3;;;1688:36:4;1549:175;1431:300;-1:-1:-1;;1431:300:4:o;1102:30:12:-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1102:30:12;;-1:-1:-1;1102:30:12;:::o;2349:98:4:-;2403:13;2435:5;2428:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2349:98;:::o;3950:217::-;4026:7;4053:16;4061:7;4053;:16::i;:::-;4045:73;;;;-1:-1:-1;;;4045:73:4;;14870:2:17;4045:73:4;;;14852:21:17;14909:2;14889:18;;;14882:30;14948:34;14928:18;;;14921:62;-1:-1:-1;;;14999:18:17;;;14992:42;15051:19;;4045:73:4;;;;;;;;;-1:-1:-1;4136:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;4136:24:4;;3950:217::o;3488:401::-;3568:13;3584:23;3599:7;3584:14;:23::i;:::-;3568:39;;3631:5;-1:-1:-1;;;;;3625:11:4;:2;-1:-1:-1;;;;;3625:11:4;;;3617:57;;;;-1:-1:-1;;;3617:57:4;;17521:2:17;3617:57:4;;;17503:21:17;17560:2;17540:18;;;17533:30;17599:34;17579:18;;;17572:62;-1:-1:-1;;;17650:18:17;;;17643:31;17691:19;;3617:57:4;17319:397:17;3617:57:4;666:10:1;-1:-1:-1;;;;;3706:21:4;;;;:62;;-1:-1:-1;3731:37:4;3748:5;666:10:1;4590:162:4;:::i;3731:37::-;3685:165;;;;-1:-1:-1;;;3685:165:4;;13263:2:17;3685:165:4;;;13245:21:17;13302:2;13282:18;;;13275:30;13341:34;13321:18;;;13314:62;13412:26;13392:18;;;13385:54;13456:19;;3685:165:4;13061:420:17;3685:165:4;3861:21;3870:2;3874:7;3861:8;:21::i;:::-;3558:331;3488:401;;:::o;16863:540:12:-;16936:9;;16923;:22;;16915:58;;;;-1:-1:-1;;;16915:58:12;;;;;;;:::i;:::-;16991:11;;;;;;;;:19;;:11;:19;16983:54;;;;-1:-1:-1;;;16983:54:12;;17923:2:17;16983:54:12;;;17905:21:17;17962:2;17942:18;;;17935:30;-1:-1:-1;;;17981:18:17;;;17974:52;18043:18;;16983:54:12;17721:346:17;16983:54:12;17055:12;;:28;;-1:-1:-1;;;;;17055:12:12;;;;17073:9;17055:28;;;;;:12;:28;:12;:28;17073:9;17055:12;:28;;;;;;;17047:71;;;;-1:-1:-1;;;17047:71:12;;9771:2:17;17047:71:12;;;9753:21:17;9810:2;9790:18;;;9783:30;9849:32;9829:18;;;9822:60;9899:18;;17047:71:12;9569:354:17;17047:71:12;625:5;17136:25;:15;864:14:2;;773:112;17136:25:12;:45;17128:71;;;;-1:-1:-1;;;17128:71:12;;18692:2:17;17128:71:12;;;18674:21:17;18731:2;18711:18;;;18704:30;-1:-1:-1;;;18750:18:17;;;18743:43;18803:18;;17128:71:12;18490:337:17;17128:71:12;17209:16;17228:19;:17;:19::i;:::-;17209:38;;17266:23;17280:8;17266:13;:23::i;:::-;17265:24;17257:52;;;;-1:-1:-1;;;17257:52:12;;16000:2:17;17257:52:12;;;15982:21:17;16039:2;16019:18;;;16012:30;-1:-1:-1;;;16058:18:17;;;16051:45;16113:18;;17257:52:12;15798:339:17;17257:52:12;17328:31;17338:10;17350:8;17328:9;:31::i;:::-;17369:27;:15;978:19:2;;996:1;978:19;;;891:123;17369:27:12;16905:498;16863:540::o;10296:721::-;10373:9;;10360;:22;;10352:58;;;;-1:-1:-1;;;10352:58:12;;;;;;;:::i;:::-;10428:13;;;;:21;;:13;:21;10420:61;;;;-1:-1:-1;;;10420:61:12;;;;;;;:::i;:::-;10491:16;10510:19;:17;:19::i;:::-;10491:38;;10547:36;10572:10;10547:24;:36::i;:::-;10539:65;;;;-1:-1:-1;;;10539:65:12;;19034:2:17;10539:65:12;;;19016:21:17;19073:2;19053:18;;;19046:30;-1:-1:-1;;;19092:18:17;;;19085:46;19148:18;;10539:65:12;18832:340:17;10539:65:12;10622:12;;:28;;-1:-1:-1;;;;;10622:12:12;;;;10640:9;10622:28;;;;;:12;:28;:12;:28;10640:9;10622:12;:28;;;;;;;10614:71;;;;-1:-1:-1;;;10614:71:12;;9771:2:17;10614:71:12;;;9753:21:17;9810:2;9790:18;;;9783:30;9849:32;9829:18;;;9822:60;9899:18;;10614:71:12;9569:354:17;10614:71:12;625:5;10703:25;:15;864:14:2;;773:112;10703:25:12;:45;10695:71;;;;-1:-1:-1;;;10695:71:12;;18692:2:17;10695:71:12;;;18674:21:17;18731:2;18711:18;;;18704:30;-1:-1:-1;;;18750:18:17;;;18743:43;18803:18;;10695:71:12;18490:337:17;10695:71:12;10806:10;10784:33;;;;:21;:33;;;;;;10821:1;-1:-1:-1;10784:38:12;10776:73;;;;-1:-1:-1;;;10776:73:12;;17170:2:17;10776:73:12;;;17152:21:17;17209:2;17189:18;;;17182:30;-1:-1:-1;;;17228:18:17;;;17221:52;17290:18;;10776:73:12;16968:346:17;10776:73:12;10917:10;10895:33;;;;:21;:33;;;;;;:37;;10931:1;;10895:37;:::i;:::-;10881:10;10859:33;;;;:21;:33;;;;;:73;;;;10942:31;;10964:8;10942:9;:31::i;11756:719::-;11832:9;;11819;:22;;11811:58;;;;-1:-1:-1;;;11811:58:12;;;;;;;:::i;:::-;11887:13;;;;:21;;:13;:21;11879:61;;;;-1:-1:-1;;;11879:61:12;;;;;;;:::i;:::-;11950:16;11969:19;:17;:19::i;:::-;11950:38;;12006:35;12030:10;12006:23;:35::i;993:29::-;;;;;;;;;;;;5339:520;1038:6:13;;-1:-1:-1;;;;;1038:6:13;666:10:1;1178:23:13;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;5408:12:12::1;:26:::0;;::::1;::::0;;::::1;::::0;;;;::::1;::::0;;-1:-1:-1;;;;;5408:26:12;;::::1;-1:-1:-1::0;;;;;;5408:26:12;;::::1;::::0;::::1;::::0;;;5444:12:::1;:26:::0;;;;::::1;::::0;;;;::::1;::::0;;;::::1;::::0;::::1;::::0;;5480:14:::1;:28:::0;;;;::::1;::::0;;;;::::1;::::0;;;::::1;::::0;::::1;::::0;;5518:13:::1;:27:::0;;;;::::1;::::0;;;;::::1;::::0;;;::::1;::::0;::::1;::::0;;5555:13:::1;:27:::0;;;;::::1;::::0;;;;::::1;::::0;;;::::1;::::0;::::1;::::0;;5592:12:::1;:26:::0;;;;::::1;::::0;;;;::::1;::::0;;;::::1;::::0;::::1;::::0;;5628:14:::1;:28:::0;;;;::::1;::::0;;;;::::1;::::0;;;::::1;::::0;::::1;::::0;;5666:14:::1;:28:::0;;;;::::1;::::0;;;;::::1;::::0;;;::::1;::::0;::::1;::::0;;5704:13:::1;:27:::0;;;;::::1;::::0;;;;::::1;::::0;;;::::1;::::0;::::1;::::0;;5741:12:::1;:26:::0;;;;::::1;::::0;;;;::::1;::::0;;;::::1;::::0;::::1;::::0;;5777:15:::1;:29:::0;;;;::::1;::::0;;;;;::::1;::::0;;;;::::1;::::0;::::1;::::0;;;-1:-1:-1;5816:30:12;;;:21:::1;5408:26;5816:30:::0;;;;5849:3:::1;5816:36:::0;;5339:520::o;17643:104::-;17689:7;17715:25;:15;864:14:2;;773:112;17715:25:12;17708:32;;17643:104;:::o;3784:600:14:-;-1:-1:-1;;;;;3859:16:14;;3878:1;3859:16;;;:7;:16;;;;;;3851:71;;;;-1:-1:-1;;;3851:71:14;;10487:2:17;3851:71:14;;;10469:21:17;10526:2;10506:18;;;10499:30;10565:34;10545:18;;;10538:62;-1:-1:-1;;;10616:18:17;;;10609:36;10662:19;;3851:71:14;10285:402:17;3851:71:14;3933:21;3981:14;;3957:21;:38;;;;:::i;:::-;-1:-1:-1;;;;;4075:18:14;;4005:15;4075:18;;;:9;:18;;;;;;;;;4060:12;;4040:7;:16;;;;;;;3933:62;;-1:-1:-1;4005:15:14;;4024:32;;3933:62;4024:32;:::i;:::-;4023:49;;;;:::i;:::-;:70;;;;:::i;:::-;4005:88;-1:-1:-1;4112:12:14;4104:68;;;;-1:-1:-1;;;4104:68:14;;12851:2:17;4104:68:14;;;12833:21:17;12890:2;12870:18;;;12863:30;12929:34;12909:18;;;12902:62;-1:-1:-1;;;12980:18:17;;;12973:41;13031:19;;4104:68:14;12649:407:17;4104:68:14;-1:-1:-1;;;;;4204:18:14;;;;;;:9;:18;;;;;;:28;;4225:7;;4204:28;:::i;:::-;-1:-1:-1;;;;;4183:18:14;;;;;;:9;:18;;;;;:49;4259:14;;:24;;4276:7;;4259:24;:::i;:::-;4242:14;:41;4294:35;4312:7;4321;4294:17;:35::i;:::-;4344:33;;;-1:-1:-1;;;;;7116:32:17;;7098:51;;7180:2;7165:18;;7158:34;;;4344:33:14;;7071:18:17;4344:33:14;;;;;;;3841:543;;3784:600;:::o;17991:102:12:-;1038:6:13;;-1:-1:-1;;;;;1038:6:13;666:10:1;1178:23:13;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;18063:9:12::1;:23:::0;17991:102::o;4197:278::-;1038:6:13;;-1:-1:-1;;;;;1038:6:13;666:10:1;1178:23:13;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;4287:9:12::1;4283:183;4306:6;:13;4302:1;:17;4283:183;;;4340:14;4360:6;4367:1;4360:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;4340:30;;::::1;::::0;::::1;::::0;;-1:-1:-1;4340:30:12;;;;;;;;::::1;::::0;;-1:-1:-1;;;;;;4340:30:12::1;-1:-1:-1::0;;;;;4340:30:12;;::::1;::::0;;;::::1;::::0;;4441:9;;4419:21:::1;::::0;-1:-1:-1;4441:9:12;;4448:1;;4441:9;::::1;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;4419:32:12::1;-1:-1:-1::0;;;;;4419:32:12::1;;;;;;;;;;;;;4454:1;4419:36;;;;:::i;:::-;4384:21;:32;4406:6;4413:1;4406:9;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;4384:32:12::1;-1:-1:-1::0;;;;;4384:32:12::1;;;;;;;;;;;;:71;;;;4321:3;;;;;:::i;:::-;;;;4283:183;;;;4197:278:::0;:::o;7216:257::-;7283:4;;7299:146;7322:12;:19;7318:23;;7299:146;;;7384:5;-1:-1:-1;;;;;7365:24:12;:12;7378:1;7365:15;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;7365:15:12;:24;7362:73;;;-1:-1:-1;7416:4:12;;7216:257;-1:-1:-1;;7216:257:12:o;7362:73::-;7343:3;;;;:::i;:::-;;;;7299:146;;;-1:-1:-1;7461:5:12;;7216:257;-1:-1:-1;;7216:257:12:o;9569:717::-;9644:9;;9631;:22;;9623:58;;;;-1:-1:-1;;;9623:58:12;;;;;;;:::i;:::-;9699:13;;;;:21;;:13;:21;9691:61;;;;-1:-1:-1;;;9691:61:12;;;;;;;:::i;:::-;9762:16;9781:19;:17;:19::i;:::-;9762:38;;9818:34;9841:10;9818:22;:34::i;2774:275::-;1038:6:13;;-1:-1:-1;;;;;1038:6:13;666:10:1;1178:23:13;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;2864:9:12::1;2860:183;2883:6;:13;2879:1;:17;2860:183;;;2917:14;2937:6;2944:1;2937:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;2917:30;;::::1;::::0;::::1;::::0;;-1:-1:-1;2917:30:12;;;;;;;;::::1;::::0;;-1:-1:-1;;;;;;2917:30:12::1;-1:-1:-1::0;;;;;2917:30:12;;::::1;::::0;;;::::1;::::0;;3018:9;;2996:21:::1;::::0;-1:-1:-1;3018:9:12;;3025:1;;3018:9;::::1;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;2996:32:12::1;-1:-1:-1::0;;;;;2996:32:12::1;;;;;;;;;;;;;3031:1;2996:36;;;;:::i;:::-;2961:21;:32;2983:6;2990:1;2983:9;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;2961:32:12::1;-1:-1:-1::0;;;;;2961:32:12::1;;;;;;;;;;;;:71;;;;2898:3;;;;;:::i;:::-;;;;2860:183;;3628:274:::0;1038:6:13;;-1:-1:-1;;;;;1038:6:13;666:10:1;1178:23:13;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;3716:9:12::1;3712:181;3735:6;:13;3731:1;:17;3712:181;;;3769:12;3787:6;3794:1;3787:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;3769:28;;::::1;::::0;::::1;::::0;;-1:-1:-1;3769:28:12;;;;;;;;::::1;::::0;;-1:-1:-1;;;;;;3769:28:12::1;-1:-1:-1::0;;;;;3769:28:12;;::::1;::::0;;;::::1;::::0;;3868:9;;3846:21:::1;::::0;-1:-1:-1;3868:9:12;;3875:1;;3868:9;::::1;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;3846:32:12::1;-1:-1:-1::0;;;;;3846:32:12::1;;;;;;;;;;;;;3881:1;3846:36;;;;:::i;:::-;3811:21;:32;3833:6;3840:1;3833:9;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;3811:32:12::1;-1:-1:-1::0;;;;;3811:32:12::1;;;;;;;;;;;;:71;;;;3750:3;;;;;:::i;:::-;;;;3712:181;;4814:330:4::0;5003:41;666:10:1;5036:7:4;5003:18;:41::i;:::-;4995:103;;;;-1:-1:-1;;;4995:103:4;;;;;;;:::i;:::-;5109:28;5119:4;5125:2;5129:7;5109:9;:28::i;4768:274:12:-;1038:6:13;;-1:-1:-1;;;;;1038:6:13;666:10:1;1178:23:13;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;4856:9:12::1;4852:181;4875:6;:13;4871:1;:17;4852:181;;;4909:12;4927:6;4934:1;4927:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;4909:28;;::::1;::::0;::::1;::::0;;-1:-1:-1;4909:28:12;;;;;;;;::::1;::::0;;-1:-1:-1;;;;;;4909:28:12::1;-1:-1:-1::0;;;;;4909:28:12;;::::1;::::0;;;::::1;::::0;;5008:9;;4986:21:::1;::::0;-1:-1:-1;5008:9:12;;5015:1;;5008:9;::::1;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;4986:32:12::1;-1:-1:-1::0;;;;;4986:32:12::1;;;;;;;;;;;;;5021:1;4986:36;;;;:::i;:::-;4951:21;:32;4973:6;4980:1;4973:9;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;4951:32:12::1;-1:-1:-1::0;;;;;4951:32:12::1;;;;;;;;;;;;:71;;;;4890:3;;;;;:::i;:::-;;;;4852:181;;6403:263:::0;6472:4;;6488:150;6511:14;:21;6507:25;;6488:150;;;6577:5;-1:-1:-1;;;;;6556:26:12;:14;6571:1;6556:17;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;6556:17:12;:26;6553:75;;;-1:-1:-1;6609:4:12;;6403:263;-1:-1:-1;;6403:263:12:o;6553:75::-;6534:3;;;;:::i;:::-;;;;6488:150;;957:30;;;;;;;;;;;;16130:723;16208:9;;16195;:22;;16187:58;;;;-1:-1:-1;;;16187:58:12;;;;;;;:::i;:::-;16263:13;;;;:21;;:13;:21;16255:61;;;;-1:-1:-1;;;16255:61:12;;;;;;;:::i;:::-;16326:16;16345:19;:17;:19::i;:::-;16326:38;;16382:37;16408:10;8566:266;8636:4;;8652:152;8675:15;:22;8671:26;;8652:152;;;8743:5;-1:-1:-1;;;;;8721:27:12;:15;8737:1;8721:18;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;8721:18:12;:27;8718:76;;;-1:-1:-1;8775:4:12;;8566:266;-1:-1:-1;;8566:266:12:o;8718:76::-;8699:3;;;;:::i;:::-;;;;8652:152;;17413:220;17462:7;17497:1;17481:128;625:5;17500:1;:21;17481:128;;;17546:10;17554:1;17546:7;:10::i;:::-;17542:57;;17583:1;17413:220;-1:-1:-1;17413:220:12:o;17542:57::-;17523:3;;;;:::i;:::-;;;;17481:128;;;;17625:1;17618:8;;17413:220;:::o;5210:179:4:-;5343:39;5360:4;5366:2;5370:7;5343:39;;;;;;;;;;;;:16;:39::i;8842:717:12:-;8917:9;;8904;:22;;8896:58;;;;-1:-1:-1;;;8896:58:12;;;;;;;:::i;:::-;8972:13;;;;:21;;:13;:21;8964:61;;;;-1:-1:-1;;;8964:61:12;;;;;;;:::i;:::-;9035:16;9054:19;:17;:19::i;:::-;9035:38;;9091:34;9114:10;9091:22;:34::i;1831:113::-;1038:6:13;;-1:-1:-1;;;;;1038:6:13;666:10:1;1178:23:13;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;1910:27:12;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;2052:235:4:-:0;2124:7;2159:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2159:16:4;2193:19;2185:73;;;;-1:-1:-1;;;2185:73:4;;14099:2:17;2185:73:4;;;14081:21:17;14138:2;14118:18;;;14111:30;14177:34;14157:18;;;14150:62;-1:-1:-1;;;14228:18:17;;;14221:39;14277:19;;2185:73:4;13897:405:17;15403:717:12;15478:9;;15465;:22;;15457:58;;;;-1:-1:-1;;;15457:58:12;;;;;;;:::i;:::-;15533:13;;;;:21;;:13;:21;15525:61;;;;-1:-1:-1;;;15525:61:12;;;;;;;:::i;:::-;15596:16;15615:19;:17;:19::i;:::-;15596:38;;15652:34;15675:10;8299:257;8366:4;;8382:146;8405:12;:19;8401:23;;8382:146;;;8467:5;-1:-1:-1;;;;;8448:24:12;:12;8461:1;8448:15;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;8448:15:12;:24;8445:73;;;-1:-1:-1;8499:4:12;;8299:257;-1:-1:-1;;8299:257:12:o;8445:73::-;8426:3;;;;:::i;:::-;;;;8382:146;;5869:257;5936:4;;5952:146;5975:12;:19;5971:23;;5952:146;;;6037:5;-1:-1:-1;;;;;6018:24:12;:12;6031:1;6018:15;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;6018:15:12;:24;6015:73;;;-1:-1:-1;6069:4:12;;5869:257;-1:-1:-1;;5869:257:12:o;6015:73::-;5996:3;;;;:::i;:::-;;;;5952:146;;2209:271;1038:6:13;;-1:-1:-1;;;;;1038:6:13;666:10:1;1178:23:13;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;2297:9:12::1;2293:181;2316:6;:13;2312:1;:17;2293:181;;;2350:12;2368:6;2375:1;2368:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;2350:28;;::::1;::::0;::::1;::::0;;-1:-1:-1;2350:28:12;;;;;;;;::::1;::::0;;-1:-1:-1;;;;;;2350:28:12::1;-1:-1:-1::0;;;;;2350:28:12;;::::1;::::0;;;::::1;::::0;;2449:9;;2427:21:::1;::::0;-1:-1:-1;2449:9:12;;2456:1;;2449:9;::::1;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;2427:32:12::1;-1:-1:-1::0;;;;;2427:32:12::1;;;;;;;;;;;;;2462:1;2427:36;;;;:::i;:::-;2392:21;:32;2414:6;2421:1;2414:9;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;2392:32:12::1;-1:-1:-1::0;;;;;2392:32:12::1;;;;;;;;;;;;:71;;;;2331:3;;;;;:::i;:::-;;;;2293:181;;6676:260:::0;6744:4;;6760:148;6783:13;:20;6779:24;;6760:148;;;6847:5;-1:-1:-1;;;;;6827:25:12;:13;6841:1;6827:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;6827:16:12;:25;6824:74;;;-1:-1:-1;6879:4:12;;6676:260;-1:-1:-1;;6676:260:12:o;6824:74::-;6805:3;;;;:::i;:::-;;;;6760:148;;7756:263;7825:4;;7841:150;7864:14;:21;7860:25;;7841:150;;;7930:5;-1:-1:-1;;;;;7909:26:12;:14;7924:1;7909:17;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;7909:17:12;:26;7906:75;;;-1:-1:-1;7962:4:12;;7756:263;-1:-1:-1;;7756:263:12:o;7906:75::-;7887:3;;;;:::i;:::-;;;;7841:150;;7483:263;7552:4;;7568:150;7591:14;:21;7587:25;;7568:150;;;7657:5;-1:-1:-1;;;;;7636:26:12;:14;7651:1;7636:17;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;7636:17:12;:26;7633:75;;;-1:-1:-1;7689:4:12;;7483:263;-1:-1:-1;;7483:263:12:o;7633:75::-;7614:3;;;;:::i;:::-;;;;7568:150;;1790:205:4;1862:7;-1:-1:-1;;;;;1889:19:4;;1881:74;;;;-1:-1:-1;;;1881:74:4;;13688:2:17;1881:74:4;;;13670:21:17;13727:2;13707:18;;;13700:30;13766:34;13746:18;;;13739:62;-1:-1:-1;;;13817:18:17;;;13810:40;13867:19;;1881:74:4;13486:406:17;1881:74:4;-1:-1:-1;;;;;;1972:16:4;;;;;:9;:16;;;;;;;1790:205::o;1598:92:13:-;1038:6;;-1:-1:-1;;;;;1038:6:13;666:10:1;1178:23:13;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;1138:29:12:-;;;;;;;;;;;;12485:717;12560:9;;12547;:22;;12539:58;;;;-1:-1:-1;;;12539:58:12;;;;;;;:::i;:::-;12615:13;;;;:21;;:13;:21;12607:61;;;;-1:-1:-1;;;12607:61:12;;;;;;;:::i;:::-;12678:16;12697:19;:17;:19::i;:::-;12678:38;;12734:34;12757:10;12734:22;:34::i;6136:257::-;6203:4;;6219:146;6242:12;:19;6238:23;;6219:146;;;6304:5;-1:-1:-1;;;;;6285:24:12;:12;6298:1;6285:15;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;6285:15:12;:24;6282:73;;;-1:-1:-1;6336:4:12;;6136:257;-1:-1:-1;;6136:257:12:o;6282:73::-;6263:3;;;;:::i;:::-;;;;6219:146;;6946:260;7014:4;;7030:148;7053:13;:20;7049:24;;7030:148;;;7117:5;-1:-1:-1;;;;;7097:25:12;:13;7111:1;7097:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;7097:16:12;:25;7094:74;;;-1:-1:-1;7149:4:12;;6946:260;-1:-1:-1;;6946:260:12:o;7094:74::-;7075:3;;;;:::i;:::-;;;;7030:148;;18103:197;1038:6:13;;-1:-1:-1;;;;;1038:6:13;666:10:1;1178:23:13;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;18160:9:12::1;18155:139;18179:5;:12:::0;18175:16;::::1;18155:139;;;18212:22;18245:5;18251:1;18245:8;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;18245:8:12::1;::::0;-1:-1:-1;18268:15:12::1;18245:8:::0;18268:7:::1;:15::i;:::-;-1:-1:-1::0;18193:3:12;::::1;::::0;::::1;:::i;:::-;;;;18155:139;;3912:275:::0;1038:6:13;;-1:-1:-1;;;;;1038:6:13;666:10:1;1178:23:13;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;4002:9:12::1;3998:183;4021:6;:13;4017:1;:17;3998:183;;;4055:14;4075:6;4082:1;4075:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;4055:30;;::::1;::::0;::::1;::::0;;-1:-1:-1;4055:30:12;;;;;;;;::::1;::::0;;-1:-1:-1;;;;;;4055:30:12::1;-1:-1:-1::0;;;;;4055:30:12;;::::1;::::0;;;::::1;::::0;;4156:9;;4134:21:::1;::::0;-1:-1:-1;4156:9:12;;4163:1;;4156:9;::::1;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;4134:32:12::1;-1:-1:-1::0;;;;;4134:32:12::1;;;;;;;;;;;;;4169:1;4134:36;;;;:::i;:::-;4099:21;:32;4121:6;4128:1;4121:9;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;4099:32:12::1;-1:-1:-1::0;;;;;4099:32:12::1;;;;;;;;;;;;:71;;;;4036:3;;;;;:::i;:::-;;;;3998:183;;3490:100:14::0;3543:7;3569;3577:5;3569:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;3569:14:14;;3490:100;-1:-1:-1;;3490:100:14:o;2511:102:4:-;2567:13;2599:7;2592:14;;;;;:::i;4234:290::-;-1:-1:-1;;;;;4336:24:4;;666:10:1;4336:24:4;;4328:62;;;;-1:-1:-1;;;4328:62:4;;11299:2:17;4328:62:4;;;11281:21:17;11338:2;11318:18;;;11311:30;11377:27;11357:18;;;11350:55;11422:18;;4328:62:4;11097:349:17;4328:62:4;666:10:1;4401:32:4;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4401:42:4;;;;;;;;;;;;:53;;-1:-1:-1;;4401:53:4;;;;;;;;;;4469:48;;8115:41:17;;;4401:42:4;;666:10:1;4469:48:4;;8088:18:17;4469:48:4;;;;;;;4234:290;;:::o;814:29:12:-;;;;;;;;;;;;4485:273;1038:6:13;;-1:-1:-1;;;;;1038:6:13;666:10:1;1178:23:13;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;4574:9:12::1;4570:182;4593:6;:13;4589:1;:17;4570:182;;;4627:13;4646:6;4653:1;4646:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;4627:29;;::::1;::::0;::::1;::::0;;-1:-1:-1;4627:29:12;;;;;;;;::::1;::::0;;-1:-1:-1;;;;;;4627:29:12::1;-1:-1:-1::0;;;;;4627:29:12;;::::1;::::0;;;::::1;::::0;;4727:9;;4705:21:::1;::::0;-1:-1:-1;4727:9:12;;4734:1;;4727:9;::::1;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;4705:32:12::1;-1:-1:-1::0;;;;;4705:32:12::1;;;;;;;;;;;;;4740:1;4705:36;;;;:::i;:::-;4670:21;:32;4692:6;4699:1;4692:9;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;4670:32:12::1;-1:-1:-1::0;;;;;4670:32:12::1;;;;;;;;;;;;:71;;;;4608:3;;;;;:::i;:::-;;;;4570:182;;5455:320:4::0;5624:41;666:10:1;5657:7:4;5624:18;:41::i;:::-;5616:103;;;;-1:-1:-1;;;5616:103:4;;;;;;;:::i;:::-;5729:39;5743:4;5749:2;5753:7;5762:5;5729:13;:39::i;:::-;5455:320;;;;:::o;13212:721:12:-;13289:9;;13276;:22;;13268:58;;;;-1:-1:-1;;;13268:58:12;;;;;;;:::i;:::-;13344:13;;;;:21;;:13;:21;13336:61;;;;-1:-1:-1;;;13336:61:12;;;;;;;:::i;:::-;13407:16;13426:19;:17;:19::i;:::-;13407:38;;13463:36;13488:10;13463:24;:36::i;2079:120::-;1038:6:13;;-1:-1:-1;;;;;1038:6:13;666:10:1;1178:23:13;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;2164:12:12::1;:28:::0;;-1:-1:-1;;;;;;2164:28:12::1;-1:-1:-1::0;;;;;2164:28:12;;;::::1;::::0;;;::::1;::::0;;2079:120::o;2679:329:4:-;2752:13;2785:16;2793:7;2785;:16::i;:::-;2777:76;;;;-1:-1:-1;;;2777:76:4;;16754:2:17;2777:76:4;;;16736:21:17;16793:2;16773:18;;;16766:30;16832:34;16812:18;;;16805:62;-1:-1:-1;;;16883:18:17;;;16876:45;16938:19;;2777:76:4;16552:411:17;2777:76:4;2864:21;2888:10;:8;:10::i;:::-;2864:34;;2939:1;2921:7;2915:21;:25;:86;;;;;;;;;;;;;;;;;2967:7;2976:18;:7;:16;:18::i;:::-;2950:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2915:86;2908:93;2679:329;-1:-1:-1;;;2679:329:4:o;1065:31:12:-;;;;;;;;;;;;17757:109;1038:6:13;;-1:-1:-1;;;;;1038:6:13;666:10:1;1178:23:13;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;17831:13:12::1;:28:::0;;-1:-1:-1;;17831:28:12::1;::::0;::::1;;::::0;;;::::1;::::0;;17757:109::o;921:30::-;;;;;;;;;;;;17876:105;1038:6:13;;-1:-1:-1;;;;;1038:6:13;666:10:1;1178:23:13;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;17948:11:12::1;:26:::0;;;::::1;;;;-1:-1:-1::0;;17948:26:12;;::::1;::::0;;;::::1;::::0;;17876:105::o;1173:32::-;;;;;;;;;;;;2490:274;1038:6:13;;-1:-1:-1;;;;;1038:6:13;666:10:1;1178:23:13;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;2578:9:12::1;2574:181;2597:6;:13;2593:1;:17;2574:181;;;2631:12;2649:6;2656:1;2649:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;2631:28;;::::1;::::0;::::1;::::0;;-1:-1:-1;2631:28:12;;;;;;;;::::1;::::0;;-1:-1:-1;;;;;;2631:28:12::1;-1:-1:-1::0;;;;;2631:28:12;;::::1;::::0;;;::::1;::::0;;2730:9;;2708:21:::1;::::0;-1:-1:-1;2730:9:12;;2737:1;;2730:9;::::1;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;2708:32:12::1;-1:-1:-1::0;;;;;2708:32:12::1;;;;;;;;;;;;;2743:1;2708:36;;;;:::i;:::-;2673:21;:32;2695:6;2702:1;2695:9;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;2673:32:12::1;-1:-1:-1::0;;;;;2673:32:12::1;;;;;;;;;;;;:71;;;;2612:3;;;;;:::i;:::-;;;;2574:181;;8029:260:::0;8097:4;;8113:148;8136:13;:20;8132:24;;8113:148;;;8200:5;-1:-1:-1;;;;;8180:25:12;:13;8194:1;8180:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;8180:16:12;:25;8177:74;;;-1:-1:-1;8232:4:12;;8029:260;-1:-1:-1;;8029:260:12:o;8177:74::-;8158:3;;;;:::i;:::-;;;;8113:148;;5052:277;1038:6:13;;-1:-1:-1;;;;;1038:6:13;666:10:1;1178:23:13;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;5143:9:12::1;5139:184;5162:6;:13;5158:1;:17;5139:184;;;5196:15;5217:6;5224:1;5217:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;5196:31;;::::1;::::0;::::1;::::0;;-1:-1:-1;5196:31:12;;;;;;;;::::1;::::0;;-1:-1:-1;;;;;;5196:31:12::1;-1:-1:-1::0;;;;;5196:31:12;;::::1;::::0;;;::::1;::::0;;5298:9;;5276:21:::1;::::0;-1:-1:-1;5298:9:12;;5305:1;;5298:9;::::1;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;5276:32:12::1;-1:-1:-1::0;;;;;5276:32:12::1;;;;;;;;;;;;;5311:1;5276:36;;;;:::i;:::-;5241:21;:32;5263:6;5270:1;5263:9;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;5241:32:12::1;-1:-1:-1::0;;;;;5241:32:12::1;;;;;;;;;;;;:71;;;;5177:3;;;;;:::i;:::-;;;;5139:184;;11027:719:::0;11103:9;;11090;:22;;11082:58;;;;-1:-1:-1;;;11082:58:12;;;;;;;:::i;:::-;11158:13;;;;:21;;:13;:21;11150:61;;;;-1:-1:-1;;;11150:61:12;;;;;;;:::i;:::-;11221:16;11240:19;:17;:19::i;:::-;11221:38;;11277:35;11301:10;11277:23;:35::i;849:29::-;;;;;;;;;;;;14674:719;14750:9;;14737;:22;;14729:58;;;;-1:-1:-1;;;14729:58:12;;;;;;;:::i;:::-;14805:13;;;;:21;;:13;:21;14797:61;;;;-1:-1:-1;;;14797:61:12;;;;;;;:::i;:::-;14868:16;14887:19;:17;:19::i;:::-;14868:38;;14924:35;14948:10;14924:23;:35::i;3059:276::-;1038:6:13;;-1:-1:-1;;;;;1038:6:13;666:10:1;1178:23:13;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;3148:9:12::1;3144:182;3167:6;:13;3163:1;:17;3144:182;;;3201:13;3220:6;3227:1;3220:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;3201:29;;::::1;::::0;::::1;::::0;;-1:-1:-1;3201:29:12;;;;;;;;::::1;::::0;;-1:-1:-1;;;;;;3201:29:12::1;-1:-1:-1::0;;;;;3201:29:12;;::::1;::::0;;;::::1;::::0;;3301:9;;3279:21:::1;::::0;-1:-1:-1;3301:9:12;;3308:1;;3301:9;::::1;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;3279:32:12::1;-1:-1:-1::0;;;;;3279:32:12::1;;;;;;;;;;;;;3314:1;3279:36;;;;:::i;:::-;3244:21;:32;3266:6;3273:1;3266:9;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;3244:32:12::1;-1:-1:-1::0;;;;;3244:32:12::1;;;;;;;;;;;;:71;;;;3182:3;;;;;:::i;:::-;;;;3144:182;;1839:189:13::0;1038:6;;-1:-1:-1;;;;;1038:6:13;666:10:1;1178:23:13;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;-1:-1:-1;;;;;1927:22:13;::::1;1919:73;;;::::0;-1:-1:-1;;;1919:73:13;;9364:2:17;1919:73:13::1;::::0;::::1;9346:21:17::0;9403:2;9383:18;;;9376:30;9442:34;9422:18;;;9415:62;-1:-1:-1;;;9493:18:17;;;9486:36;9539:19;;1919:73:13::1;9162:402:17::0;1919:73:13::1;2002:19;2012:8;2002:9;:19::i;3345:273:12:-:0;1038:6:13;;-1:-1:-1;;;;;1038:6:13;666:10:1;1178:23:13;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;3434:9:12::1;3430:182;3453:6;:13;3449:1;:17;3430:182;;;3487:13;3506:6;3513:1;3506:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;3487:29;;::::1;::::0;::::1;::::0;;-1:-1:-1;3487:29:12;;;;;;;;::::1;::::0;;-1:-1:-1;;;;;;3487:29:12::1;-1:-1:-1::0;;;;;3487:29:12;;::::1;::::0;;;::::1;::::0;;3587:9;;3565:21:::1;::::0;-1:-1:-1;3587:9:12;;3594:1;;3587:9;::::1;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;3565:32:12::1;-1:-1:-1::0;;;;;3565:32:12::1;;;;;;;;;;;;;3600:1;3565:36;;;;:::i;:::-;3530:21;:32;3552:6;3559:1;3552:9;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;3530:32:12::1;-1:-1:-1::0;;;;;3530:32:12::1;;;;;;;;;;;;:71;;;;3468:3;;;;;:::i;:::-;;;;3430:182;;884:31:::0;;;;;;;;;;;;13943:721;14020:9;;14007;:22;;13999:58;;;;-1:-1:-1;;;13999:58:12;;;;;;;:::i;:::-;14075:13;;;;:21;;:13;:21;14067:61;;;;-1:-1:-1;;;14067:61:12;;;;;;;:::i;:::-;14138:16;14157:19;:17;:19::i;:::-;14138:38;;14194:36;14219:10;14194:24;:36::i;1028:31::-;;;;;;;;;;;;7247:125:4;7312:4;7335:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7335:16:4;:30;;;7247:125::o;11098:171::-;11172:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11172:29:4;-1:-1:-1;;;;;11172:29:4;;;;;;;;:24;;11225:23;11172:24;11225:14;:23::i;:::-;-1:-1:-1;;;;;11216:46:4;;;;;;;;;;;11098:171;;:::o;8204:108::-;8279:26;8289:2;8293:7;8279:26;;;;;;;;;;;;:9;:26::i;2012:312:0:-;2126:6;2101:21;:31;;2093:73;;;;-1:-1:-1;;;2093:73:0;;12080:2:17;2093:73:0;;;12062:21:17;12119:2;12099:18;;;12092:30;12158:31;12138:18;;;12131:59;12207:18;;2093:73:0;11878:353:17;2093:73:0;2178:12;2196:9;-1:-1:-1;;;;;2196:14:0;2218:6;2196:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2177:52;;;2247:7;2239:78;;;;-1:-1:-1;;;2239:78:0;;11653:2:17;2239:78:0;;;11635:21:17;11692:2;11672:18;;;11665:30;11731:34;11711:18;;;11704:62;11802:28;11782:18;;;11775:56;11848:19;;2239:78:0;11451:422:17;7530:344:4;7623:4;7647:16;7655:7;7647;:16::i;:::-;7639:73;;;;-1:-1:-1;;;7639:73:4;;12438:2:17;7639:73:4;;;12420:21:17;12477:2;12457:18;;;12450:30;12516:34;12496:18;;;12489:62;-1:-1:-1;;;12567:18:17;;;12560:42;12619:19;;7639:73:4;12236:408:17;7639:73:4;7722:13;7738:23;7753:7;7738:14;:23::i;:::-;7722:39;;7790:5;-1:-1:-1;;;;;7779:16:4;:7;-1:-1:-1;;;;;7779:16:4;;:51;;;;7823:7;-1:-1:-1;;;;;7799:31:4;:20;7811:7;7799:11;:20::i;:::-;-1:-1:-1;;;;;7799:31:4;;7779:51;:87;;;-1:-1:-1;;;;;;4710:25:4;;;4687:4;4710:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7834:32;7771:96;7530:344;-1:-1:-1;;;;7530:344:4:o;10427:560::-;10581:4;-1:-1:-1;;;;;10554:31:4;:23;10569:7;10554:14;:23::i;:::-;-1:-1:-1;;;;;10554:31:4;;10546:85;;;;-1:-1:-1;;;10546:85:4;;16344:2:17;10546:85:4;;;16326:21:17;16383:2;16363:18;;;16356:30;16422:34;16402:18;;;16395:62;-1:-1:-1;;;16473:18:17;;;16466:39;16522:19;;10546:85:4;16142:405:17;10546:85:4;-1:-1:-1;;;;;10649:16:4;;10641:65;;;;-1:-1:-1;;;10641:65:4;;10894:2:17;10641:65:4;;;10876:21:17;10933:2;10913:18;;;10906:30;10972:34;10952:18;;;10945:62;-1:-1:-1;;;11023:18:17;;;11016:34;11067:19;;10641:65:4;10692:400:17;10641:65:4;10818:29;10835:1;10839:7;10818:8;:29::i;:::-;-1:-1:-1;;;;;10858:15:4;;;;;;:9;:15;;;;;:20;;10877:1;;10858:15;:20;;10877:1;;10858:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10888:13:4;;;;;;:9;:13;;;;;:18;;10905:1;;10888:13;:18;;10905:1;;10888:18;:::i;:::-;;;;-1:-1:-1;;10916:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10916:21:4;-1:-1:-1;;;;;10916:21:4;;;;;;;;;10953:27;;10916:16;;10953:27;;;;;;;10427:560;;;:::o;2034:169:13:-;2108:6;;;-1:-1:-1;;;;;2124:17:13;;;-1:-1:-1;;;;;;2124:17:13;;;;;;;2156:40;;2108:6;;;2124:17;2108:6;;2156:40;;2089:16;;2156:40;2079:124;2034:169;:::o;6637:307:4:-;6788:28;6798:4;6804:2;6808:7;6788:9;:28::i;:::-;6834:48;6857:4;6863:2;6867:7;6876:5;6834:22;:48::i;:::-;6826:111;;;;-1:-1:-1;;;6826:111:4;;;;;;;:::i;1954:119:12:-;2014:13;2050:16;2043:23;;;;;:::i;275:703:16:-;331:13;548:10;544:51;;-1:-1:-1;;574:10:16;;;;;;;;;;;;-1:-1:-1;;;574:10:16;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:16;;-1:-1:-1;720:2:16;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:16;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:16;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;849:56:16;;;;;;;;-1:-1:-1;919:11:16;928:2;919:11;;:::i;:::-;;;791:150;;8533:311:4;8658:18;8664:2;8668:7;8658:5;:18::i;:::-;8707:54;8738:1;8742:2;8746:7;8755:5;8707:22;:54::i;:::-;8686:151;;;;-1:-1:-1;;;8686:151:4;;;;;;;:::i;11822:778::-;11972:4;-1:-1:-1;;;;;11992:13:4;;1034:20:0;1080:8;11988:606:4;;12027:72;;-1:-1:-1;;;12027:72:4;;-1:-1:-1;;;;;12027:36:4;;;;;:72;;666:10:1;;12078:4:4;;12084:7;;12093:5;;12027:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12027:72:4;;;;;;;;-1:-1:-1;;12027:72:4;;;;;;;;;;;;:::i;:::-;;;12023:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12266:13:4;;12262:266;;12308:60;;-1:-1:-1;;;12308:60:4;;;;;;;:::i;12262:266::-;12480:6;12474:13;12465:6;12461:2;12457:15;12450:38;12023:519;-1:-1:-1;;;;;;12149:51:4;-1:-1:-1;;;12149:51:4;;-1:-1:-1;12142:58:4;;11988:606;-1:-1:-1;12579:4:4;11822:778;;;;;;:::o;9166:372::-;-1:-1:-1;;;;;9245:16:4;;9237:61;;;;-1:-1:-1;;;9237:61:4;;14509:2:17;9237:61:4;;;14491:21:17;;;14528:18;;;14521:30;14587:34;14567:18;;;14560:62;14639:18;;9237:61:4;14307:356:17;9237:61:4;9317:16;9325:7;9317;:16::i;:::-;9316:17;9308:58;;;;-1:-1:-1;;;9308:58:4;;10130:2:17;9308:58:4;;;10112:21:17;10169:2;10149:18;;;10142:30;10208;10188:18;;;10181:58;10256:18;;9308:58:4;9928:352:17;9308:58:4;-1:-1:-1;;;;;9433:13:4;;;;;;:9;:13;;;;;:18;;9450:1;;9433:13;:18;;9450:1;;9433:18;:::i;:::-;;;;-1:-1:-1;;9461:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9461:21:4;-1:-1:-1;;;;;9461:21:4;;;;;;;;9498:33;;9461:16;;;9498:33;;9461:16;;9498:33;9166:372;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:17;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:17;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:160::-;490:20;;546:13;;539:21;529:32;;519:60;;575:1;572;565:12;519:60;425:160;;;:::o;590:247::-;649:6;702:2;690:9;681:7;677:23;673:32;670:52;;;718:1;715;708:12;670:52;757:9;744:23;776:31;801:5;776:31;:::i;1102:388::-;1170:6;1178;1231:2;1219:9;1210:7;1206:23;1202:32;1199:52;;;1247:1;1244;1237:12;1199:52;1286:9;1273:23;1305:31;1330:5;1305:31;:::i;:::-;1355:5;-1:-1:-1;1412:2:17;1397:18;;1384:32;1425:33;1384:32;1425:33;:::i;:::-;1477:7;1467:17;;;1102:388;;;;;:::o;1495:456::-;1572:6;1580;1588;1641:2;1629:9;1620:7;1616:23;1612:32;1609:52;;;1657:1;1654;1647:12;1609:52;1696:9;1683:23;1715:31;1740:5;1715:31;:::i;:::-;1765:5;-1:-1:-1;1822:2:17;1807:18;;1794:32;1835:33;1794:32;1835:33;:::i;:::-;1495:456;;1887:7;;-1:-1:-1;;;1941:2:17;1926:18;;;;1913:32;;1495:456::o;1956:794::-;2051:6;2059;2067;2075;2128:3;2116:9;2107:7;2103:23;2099:33;2096:53;;;2145:1;2142;2135:12;2096:53;2184:9;2171:23;2203:31;2228:5;2203:31;:::i;:::-;2253:5;-1:-1:-1;2310:2:17;2295:18;;2282:32;2323:33;2282:32;2323:33;:::i;:::-;2375:7;-1:-1:-1;2429:2:17;2414:18;;2401:32;;-1:-1:-1;2484:2:17;2469:18;;2456:32;2511:18;2500:30;;2497:50;;;2543:1;2540;2533:12;2497:50;2566:22;;2619:4;2611:13;;2607:27;-1:-1:-1;2597:55:17;;2648:1;2645;2638:12;2597:55;2671:73;2736:7;2731:2;2718:16;2713:2;2709;2705:11;2671:73;:::i;:::-;2661:83;;;1956:794;;;;;;;:::o;2755:315::-;2820:6;2828;2881:2;2869:9;2860:7;2856:23;2852:32;2849:52;;;2897:1;2894;2887:12;2849:52;2936:9;2923:23;2955:31;2980:5;2955:31;:::i;:::-;3005:5;-1:-1:-1;3029:35:17;3060:2;3045:18;;3029:35;:::i;:::-;3019:45;;2755:315;;;;;:::o;3075:::-;3143:6;3151;3204:2;3192:9;3183:7;3179:23;3175:32;3172:52;;;3220:1;3217;3210:12;3172:52;3259:9;3246:23;3278:31;3303:5;3278:31;:::i;:::-;3328:5;3380:2;3365:18;;;;3352:32;;-1:-1:-1;;;3075:315:17:o;3395:1032::-;3479:6;3510:2;3553;3541:9;3532:7;3528:23;3524:32;3521:52;;;3569:1;3566;3559:12;3521:52;3609:9;3596:23;3638:18;3679:2;3671:6;3668:14;3665:34;;;3695:1;3692;3685:12;3665:34;3733:6;3722:9;3718:22;3708:32;;3778:7;3771:4;3767:2;3763:13;3759:27;3749:55;;3800:1;3797;3790:12;3749:55;3836:2;3823:16;3858:2;3854;3851:10;3848:36;;;3864:18;;:::i;:::-;3910:2;3907:1;3903:10;3893:20;;3933:28;3957:2;3953;3949:11;3933:28;:::i;:::-;3995:15;;;4026:12;;;;4058:11;;;4088;;;4084:20;;4081:33;-1:-1:-1;4078:53:17;;;4127:1;4124;4117:12;4078:53;4149:1;4140:10;;4159:238;4173:2;4170:1;4167:9;4159:238;;;4244:3;4231:17;4218:30;;4261:31;4286:5;4261:31;:::i;:::-;4305:18;;;4191:1;4184:9;;;;;4343:12;;;;4375;;4159:238;;;-1:-1:-1;4416:5:17;3395:1032;-1:-1:-1;;;;;;;;3395:1032:17:o;4432:180::-;4488:6;4541:2;4529:9;4520:7;4516:23;4512:32;4509:52;;;4557:1;4554;4547:12;4509:52;4580:26;4596:9;4580:26;:::i;4617:245::-;4675:6;4728:2;4716:9;4707:7;4703:23;4699:32;4696:52;;;4744:1;4741;4734:12;4696:52;4783:9;4770:23;4802:30;4826:5;4802:30;:::i;4867:249::-;4936:6;4989:2;4977:9;4968:7;4964:23;4960:32;4957:52;;;5005:1;5002;4995:12;4957:52;5037:9;5031:16;5056:30;5080:5;5056:30;:::i;5121:450::-;5190:6;5243:2;5231:9;5222:7;5218:23;5214:32;5211:52;;;5259:1;5256;5249:12;5211:52;5299:9;5286:23;5332:18;5324:6;5321:30;5318:50;;;5364:1;5361;5354:12;5318:50;5387:22;;5440:4;5432:13;;5428:27;-1:-1:-1;5418:55:17;;5469:1;5466;5459:12;5418:55;5492:73;5557:7;5552:2;5539:16;5534:2;5530;5526:11;5492:73;:::i;5576:180::-;5635:6;5688:2;5676:9;5667:7;5663:23;5659:32;5656:52;;;5704:1;5701;5694:12;5656:52;-1:-1:-1;5727:23:17;;5576:180;-1:-1:-1;5576:180:17:o;5761:257::-;5802:3;5840:5;5834:12;5867:6;5862:3;5855:19;5883:63;5939:6;5932:4;5927:3;5923:14;5916:4;5909:5;5905:16;5883:63;:::i;:::-;6000:2;5979:15;-1:-1:-1;;5975:29:17;5966:39;;;;6007:4;5962:50;;5761:257;-1:-1:-1;;5761:257:17:o;6023:470::-;6202:3;6240:6;6234:13;6256:53;6302:6;6297:3;6290:4;6282:6;6278:17;6256:53;:::i;:::-;6372:13;;6331:16;;;;6394:57;6372:13;6331:16;6428:4;6416:17;;6394:57;:::i;:::-;6467:20;;6023:470;-1:-1:-1;;;;6023:470:17:o;7203:488::-;-1:-1:-1;;;;;7472:15:17;;;7454:34;;7524:15;;7519:2;7504:18;;7497:43;7571:2;7556:18;;7549:34;;;7619:3;7614:2;7599:18;;7592:31;;;7397:4;;7640:45;;7665:19;;7657:6;7640:45;:::i;:::-;7632:53;7203:488;-1:-1:-1;;;;;;7203:488:17:o;8167:219::-;8316:2;8305:9;8298:21;8279:4;8336:44;8376:2;8365:9;8361:18;8353:6;8336:44;:::i;8391:414::-;8593:2;8575:21;;;8632:2;8612:18;;;8605:30;8671:34;8666:2;8651:18;;8644:62;-1:-1:-1;;;8737:2:17;8722:18;;8715:48;8795:3;8780:19;;8391:414::o;8810:347::-;9012:2;8994:21;;;9051:2;9031:18;;;9024:30;9090:25;9085:2;9070:18;;9063:53;9148:2;9133:18;;8810:347::o;15081:356::-;15283:2;15265:21;;;15302:18;;;15295:30;15361:34;15356:2;15341:18;;15334:62;15428:2;15413:18;;15081:356::o;15442:351::-;15644:2;15626:21;;;15683:2;15663:18;;;15656:30;15722:29;15717:2;15702:18;;15695:57;15784:2;15769:18;;15442:351::o;18072:413::-;18274:2;18256:21;;;18313:2;18293:18;;;18286:30;18352:34;18347:2;18332:18;;18325:62;-1:-1:-1;;;18418:2:17;18403:18;;18396:47;18475:3;18460:19;;18072:413::o;19359:275::-;19430:2;19424:9;19495:2;19476:13;;-1:-1:-1;;19472:27:17;19460:40;;19530:18;19515:34;;19551:22;;;19512:62;19509:88;;;19577:18;;:::i;:::-;19613:2;19606:22;19359:275;;-1:-1:-1;19359:275:17:o;19639:128::-;19679:3;19710:1;19706:6;19703:1;19700:13;19697:39;;;19716:18;;:::i;:::-;-1:-1:-1;19752:9:17;;19639:128::o;19772:120::-;19812:1;19838;19828:35;;19843:18;;:::i;:::-;-1:-1:-1;19877:9:17;;19772:120::o;19897:168::-;19937:7;20003:1;19999;19995:6;19991:14;19988:1;19985:21;19980:1;19973:9;19966:17;19962:45;19959:71;;;20010:18;;:::i;:::-;-1:-1:-1;20050:9:17;;19897:168::o;20070:125::-;20110:4;20138:1;20135;20132:8;20129:34;;;20143:18;;:::i;:::-;-1:-1:-1;20180:9:17;;20070:125::o;20200:258::-;20272:1;20282:113;20296:6;20293:1;20290:13;20282:113;;;20372:11;;;20366:18;20353:11;;;20346:39;20318:2;20311:10;20282:113;;;20413:6;20410:1;20407:13;20404:48;;;-1:-1:-1;;20448:1:17;20430:16;;20423:27;20200:258::o;20463:380::-;20542:1;20538:12;;;;20585;;;20606:61;;20660:4;20652:6;20648:17;20638:27;;20606:61;20713:2;20705:6;20702:14;20682:18;20679:38;20676:161;;;20759:10;20754:3;20750:20;20747:1;20740:31;20794:4;20791:1;20784:15;20822:4;20819:1;20812:15;20676:161;;20463:380;;;:::o;20848:135::-;20887:3;-1:-1:-1;;20908:17:17;;20905:43;;;20928:18;;:::i;:::-;-1:-1:-1;20975:1:17;20964:13;;20848:135::o;20988:112::-;21020:1;21046;21036:35;;21051:18;;:::i;:::-;-1:-1:-1;21085:9:17;;20988:112::o;21105:127::-;21166:10;21161:3;21157:20;21154:1;21147:31;21197:4;21194:1;21187:15;21221:4;21218:1;21211:15;21237:127;21298:10;21293:3;21289:20;21286:1;21279:31;21329:4;21326:1;21319:15;21353:4;21350:1;21343:15;21369:127;21430:10;21425:3;21421:20;21418:1;21411:31;21461:4;21458:1;21451:15;21485:4;21482:1;21475:15;21501:127;21562:10;21557:3;21553:20;21550:1;21543:31;21593:4;21590:1;21583:15;21617:4;21614:1;21607:15;21633:131;-1:-1:-1;;;;;21708:31:17;;21698:42;;21688:70;;21754:1;21751;21744:12;21769:131;-1:-1:-1;;;;;;21843:32:17;;21833:43;;21823:71;;21890:1;21887;21880:12

Swarm Source

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