ETH Price: $3,386.98 (-1.47%)
Gas: 2 Gwei

Token

THORWallet Governance Token (TGT)
 

Overview

Max Total Supply

874,458,459.529724514633333318 TGT

Holders

3,516 ( 0.028%)

Market

Price

$0.03 @ 0.000008 ETH (-1.39%)

Onchain Market Cap

$23,505,889.37

Circulating Supply Market Cap

$13,900,832.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000281474976710656 TGT

Value
$0.00 ( ~0 Eth) [0.0000%]
0x00002274880075A62C0fBA031FA2008942000074
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

THORWallet is the official community wallet of THORChain, a non-custodial iOS and Android wallet that integrates all DeFi features of the THORChain blockchain such as efficient decentralized swaps, liquidity providing or decentralized lending & borrowing. We also call it Robinhood of DeFi.

Market

Volume (24H):$85,363.00
Market Capitalization:$13,900,832.00
Circulating Supply:517,571,005.00 TGT
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume
1
MEXC
TGT-USDT$0.0263
0.0000078 Eth
$50,073.00
1,902,964.990 TGT
59.5029%
2
THORChain
TGT-RUNE$0.0291
0.0000086 Eth
$18,639.48
640,541.371 TGT
20.0288%
3
Uniswap V3 (Arbitrum One)
0X429FED88F10285E61B12BDF00848315FBDFCC341-0X82AF49447D8A07E3BD95BD0D56F35241523FBAB1$0.026
0.0000077 Eth
$9,670.35
382,512.794 0X429FED88F10285E61B12BDF00848315FBDFCC341
11.9606%
4
Maya Protocol
TGT-CACAO$0.0255
0.0000075 Eth
$3,668.40
143,977.243 TGT
4.5020%
5
THORWallet DEX
TGT-CACAO$0.0255
0.0000075 Eth
$1,783.59
69,937.526 TGT
2.1868%
6
THORWallet DEX
TGT-RUNE$0.0291
0.0000086 Eth
$1,690.23
58,170.777 TGT
1.8189%

Contract Source Code Verified (Exact Match)

Contract Name:
TGT

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 2000000 runs

Other Settings:
default evmVersion, MPL-2.0 license

Contract Source Code (Solidity Multiple files format)

File 12 of 12: tgt.sol
// SPDX-License-Identifier: MPL

pragma solidity ~0.8.4;

import "./ERC777.sol";
import "./draft-EIP712.sol";
import "./ECDSA.sol";
import "./Counters.sol";

//interface IERC20 comes from openzeppelin
interface IERC20Metadata is IERC20 {
    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function decimals() external view returns (uint8);
}

// From https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/extensions/draft-IERC20Permit.sol
interface IERC20Permit {
    function permit(address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) external;
    function nonces(address owner) external view returns (uint256);
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

//the function transferFromAndCall was added so that with a permit, also a function can be called
interface IERC677ish {
    function transferAndCall(address to, uint256 value, bytes calldata data) external returns (bool success);
    function transferFromAndCall(address sender, address to, uint256 value, bytes calldata data) external returns (bool success);
    event TransferWithData(address indexed from, address indexed to, uint256 value, bytes data);
}

interface IERC677Receiver {
  function onTokenTransfer(address sender, uint value, bytes calldata data) external;
}

contract TGT is IERC20Metadata, IERC20Permit, IERC677ish, EIP712 {

    event Minted(address indexed operator, address indexed to, uint256 amount, bytes data, bytes operatorData);
    event Burned(address indexed operator, address indexed from, uint256 amount, bytes data, bytes operatorData);

    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;
    uint96 private _totalEmitted;
    uint64 private _live = 0;
    address private _owner;
    address private _reserve;
    uint64 private _lastEmitMAt;
    uint64 private _lastEmitYAt;
    uint8[] private _curveHalvingYears = [5,5,4,4,3,3,2,2,1]; //1 year has 360 days -> 1 month = 30 days
    uint96 private _curveSupply = INIT_SUPPLY;

    uint96 constant MAX_SUPPLY  = 1000000000 * (10**18); //1 billion
    uint96 constant INIT_SUPPLY =  750000000 * (10**18); //460 + 290(locked) million
    uint64 constant MAX_INT = 2**64 - 1;
    uint64 constant MONTH_IN_S = 60 * 60 * 24 * 30;

    constructor() EIP712(symbol(), "1") {
        _owner = msg.sender;
        _reserve = msg.sender;
    }

    modifier onlyOwner(){
        require(msg.sender == _owner, "TGT: not the owner");
        _;
    }

    function setCurve(uint8[] calldata curveHalvingYears) public virtual onlyOwner {
        require(curveHalvingYears.length >= 5, 'TGT: curveHalvingYears not >= 5');
        require(curveHalvingYears[curveHalvingYears.length - 1] == 1, 'TGT: last value must be 1');
        for(uint256 i=0;i<curveHalvingYears.length-1;i++) {
            require(curveHalvingYears[i] > 1, 'TGT: values must be > 1');
        }
        _curveHalvingYears = curveHalvingYears;
    }

    function transferOwner(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "TGT: transfer owner the zero address");
        require(newOwner != address(this), "TGT: transfer owner to this contract");

        _owner = newOwner;
    }

    function setReserve(address reserve) public virtual onlyOwner {
        require(reserve != address(0), "TGT: set reserve to zero address");
        require(reserve != address(this), "TGT: set reserve to this contract");

        _reserve = reserve;
    }

    function live() public view returns (uint64) {
        return _live;
    }

    function name() public view virtual override returns (string memory) {
        return "THORWallet Governance Token";
    }

    function symbol() public view virtual override returns (string memory) {
        return "TGT";
    }

    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(recipient != address(this), "ERC20: transfer to this contract");

        _transfer(msg.sender, recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(msg.sender, spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(recipient != address(this), "ERC20: transfer to this contract");

        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][msg.sender];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, msg.sender, currentAllowance - amount);
        }

        return true;
    }

    function burn(uint256 amount) public virtual {
        _transfer(msg.sender, address(0), amount);
        _totalSupply -= amount;
    }

    function mint(address[] calldata account, uint96[] calldata amount) public virtual onlyOwner {
        require(account.length == amount.length, "TGT: accounts and amounts length must match");
        require(_live == 0, "TGT: contract already live. It should be not live (live==false)");

        for(uint256 i=0;i<account.length;i++) {
            require(account[i] != address(0), "ERC20: mint to the zero address");
            require(account[i] != address(this), "TGT: sender is this contract");

            _totalSupply += amount[i];
            _balances[account[i]] += amount[i];
            emit Transfer(address(0), account[i], amount[i]);
        }
        require(_totalSupply <= INIT_SUPPLY, "TGT: surpassing INIT_SUPPLY");
    }

    function emitTokens() public virtual {
        require(_live != 0, "TGT: contract not live yet. It should be live (live==true)");

        uint64 timeInM = uint64((block.timestamp - _live) / MONTH_IN_S);
        if (timeInM <= _lastEmitMAt) {
            return;
        }
        // timeInM at the start will be 1, so subtract 1 so that we start after one
        // month with the emission from 0, to emit the full amount.
        uint64 timeInY = (timeInM - 1) / 12;
        if (timeInY >= _curveHalvingYears.length) {
            _lastEmitMAt = MAX_INT;
            //now we mint all the tokens, also if we forgot a monthly emit
            uint96 toBeMintedFinal = (MAX_SUPPLY - INIT_SUPPLY) - _totalEmitted;
            _totalSupply += toBeMintedFinal;
            _balances[_reserve] += toBeMintedFinal;
            if (isContract(_reserve)) {
                IERC677Receiver(_reserve).onTokenTransfer(address(this), toBeMintedFinal, "");
            }
            emit Transfer(address(0), _reserve, toBeMintedFinal);
            return;
        }

        if (timeInY > _lastEmitYAt) {
            uint96 toBeMintedOld = MAX_SUPPLY - _curveSupply;
            uint96 lastYearlyMint = toBeMintedOld / _curveHalvingYears[_lastEmitYAt];
            _curveSupply += lastYearlyMint;
            _lastEmitYAt = timeInY;
        }

        uint96 toBeMinted = MAX_SUPPLY - _curveSupply;
        uint96 yearlyMint = toBeMinted / _curveHalvingYears[timeInY];
        uint96 additionalAmountM = yearlyMint / 12;

        _totalSupply += additionalAmountM;
        _totalEmitted += additionalAmountM;
        _balances[_reserve] += additionalAmountM;
        _lastEmitMAt = timeInM;

        if (isContract(_reserve)) {
            IERC677Receiver(_reserve).onTokenTransfer(address(this), additionalAmountM, "");
        }
        emit Transfer(address(0), _reserve, additionalAmountM);
    }

    function mintFinish() public virtual onlyOwner {
        require(_totalSupply == INIT_SUPPLY, "TGT: supply mismatch");
        require(_live == 0, "TGT: contract is live already. It should be not live (live==false)");

        _live = uint64(block.timestamp);
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender] + addedValue);
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[msg.sender][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");

        unchecked {
            _approve(msg.sender, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    function transferAndCall(address to, uint value, bytes calldata data) public virtual override returns (bool success) {
        transferFromAndCall(msg.sender, to, value, data);
        return true;
    }

    function transferFromAndCall(address sender, address to, uint value, bytes calldata data) public virtual override returns (bool success) {
        transferFrom(sender, to, value);
        emit TransferWithData(sender, to, value, data);
        if (isContract(to)) {
            IERC677Receiver(to).onTokenTransfer(sender, value, data);
        }
        return true;
    }

    function isContract(address addr) private view returns (bool hasCode) {
        uint length;
        assembly { length := extcodesize(addr) }
        return length > 0;
    }

    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        //the recipient is checked by the callee, as this is also used for token burn, which
        //goes to address 0
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(sender != address(this), "TGT: sender is this contract");
        require(_live != 0, "TGT: contract not live yet. It should be live (live==true)");

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");

        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(owner != address(this), "TGT: owner is this contract");
        require(spender != address(0), "ERC20: approve to the zero address");
        require(spender != address(this), "TGT: spender is this contract");
        require(_live != 0, "TGT: contract not live yet. It should be live (live==true)");

        _allowances[owner][spender] = amount;

        emit Approval(owner, spender, amount);
    }

    // ************ ERC777 ********************
    using Counters for Counters.Counter;
    mapping (address => Counters.Counter) private _nonces;
    bytes32 private immutable _PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");

    function permit(address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public virtual override {
        require(block.timestamp <= deadline, "ERC20Permit: expired deadline");
        bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));
        bytes32 hash = _hashTypedDataV4(structHash);
        address signer = ECDSA.recover(hash, v, r, s);
        require(signer == owner, "ERC20Permit: invalid signature");
        _approve(owner, spender, value);
    }

    function nonces(address owner) public view virtual override returns (uint256) {
        return _nonces[owner].current();
    }

    function DOMAIN_SEPARATOR() external view override returns (bytes32) {
        return _domainSeparatorV4();
    }

    function _useNonce(address owner) internal virtual returns (uint256 current) {
        Counters.Counter storage nonce = _nonces[owner];
        current = nonce.current();
        nonce.increment();
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 2 of 12: 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 12: 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 12: draft-EIP712.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ECDSA.sol";

/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * _Available since v3.4._
 */
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}

File 5 of 12: ECDSA.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return recover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return recover(hash, r, vs);
        } else {
            revert("ECDSA: invalid signature length");
        }
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return recover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`, `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        require(
            uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0,
            "ECDSA: invalid signature 's' value"
        );
        require(v == 27 || v == 28, "ECDSA: invalid signature 'v' value");

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        require(signer != address(0), "ECDSA: invalid signature");

        return signer;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 6 of 12: ERC777.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC777.sol";
import "./IERC777Recipient.sol";
import "./IERC777Sender.sol";
import "./IERC20.sol";
import "./Address.sol";
import "./Context.sol";
import "./IERC1820Registry.sol";

/**
 * @dev Implementation of the {IERC777} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * Support for ERC20 is included in this contract, as specified by the EIP: both
 * the ERC777 and ERC20 interfaces can be safely used when interacting with it.
 * Both {IERC777-Sent} and {IERC20-Transfer} events are emitted on token
 * movements.
 *
 * Additionally, the {IERC777-granularity} value is hard-coded to `1`, meaning that there
 * are no special restrictions in the amount of tokens that created, moved, or
 * destroyed. This makes integration with ERC20 applications seamless.
 */
contract ERC777 is Context, IERC777, IERC20 {
    using Address for address;

    IERC1820Registry internal constant _ERC1820_REGISTRY = IERC1820Registry(0x1820a4B7618BdE71Dce8cdc73aAB6C95905faD24);

    mapping(address => uint256) private _balances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    bytes32 private constant _TOKENS_SENDER_INTERFACE_HASH = keccak256("ERC777TokensSender");
    bytes32 private constant _TOKENS_RECIPIENT_INTERFACE_HASH = keccak256("ERC777TokensRecipient");

    // This isn't ever read from - it's only used to respond to the defaultOperators query.
    address[] private _defaultOperatorsArray;

    // Immutable, but accounts may revoke them (tracked in __revokedDefaultOperators).
    mapping(address => bool) private _defaultOperators;

    // For each account, a mapping of its operators and revoked default operators.
    mapping(address => mapping(address => bool)) private _operators;
    mapping(address => mapping(address => bool)) private _revokedDefaultOperators;

    // ERC20-allowances
    mapping(address => mapping(address => uint256)) private _allowances;

    /**
     * @dev `defaultOperators` may be an empty array.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        address[] memory defaultOperators_
    ) {
        _name = name_;
        _symbol = symbol_;

        _defaultOperatorsArray = defaultOperators_;
        for (uint256 i = 0; i < defaultOperators_.length; i++) {
            _defaultOperators[defaultOperators_[i]] = true;
        }

        // register interfaces
        _ERC1820_REGISTRY.setInterfaceImplementer(address(this), keccak256("ERC777Token"), address(this));
        _ERC1820_REGISTRY.setInterfaceImplementer(address(this), keccak256("ERC20Token"), address(this));
    }

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

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

    /**
     * @dev See {ERC20-decimals}.
     *
     * Always returns 18, as per the
     * [ERC777 EIP](https://eips.ethereum.org/EIPS/eip-777#backward-compatibility).
     */
    function decimals() public pure virtual returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC777-granularity}.
     *
     * This implementation always returns `1`.
     */
    function granularity() public view virtual override returns (uint256) {
        return 1;
    }

    /**
     * @dev See {IERC777-totalSupply}.
     */
    function totalSupply() public view virtual override(IERC20, IERC777) returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev Returns the amount of tokens owned by an account (`tokenHolder`).
     */
    function balanceOf(address tokenHolder) public view virtual override(IERC20, IERC777) returns (uint256) {
        return _balances[tokenHolder];
    }

    /**
     * @dev See {IERC777-send}.
     *
     * Also emits a {IERC20-Transfer} event for ERC20 compatibility.
     */
    function send(
        address recipient,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        _send(_msgSender(), recipient, amount, data, "", true);
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Unlike `send`, `recipient` is _not_ required to implement the {IERC777Recipient}
     * interface if it is a contract.
     *
     * Also emits a {Sent} event.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        require(recipient != address(0), "ERC777: transfer to the zero address");

        address from = _msgSender();

        _callTokensToSend(from, from, recipient, amount, "", "");

        _move(from, from, recipient, amount, "", "");

        _callTokensReceived(from, from, recipient, amount, "", "", false);

        return true;
    }

    /**
     * @dev See {IERC777-burn}.
     *
     * Also emits a {IERC20-Transfer} event for ERC20 compatibility.
     */
    function burn(uint256 amount, bytes memory data) public virtual override {
        _burn(_msgSender(), amount, data, "");
    }

    /**
     * @dev See {IERC777-isOperatorFor}.
     */
    function isOperatorFor(address operator, address tokenHolder) public view virtual override returns (bool) {
        return
            operator == tokenHolder ||
            (_defaultOperators[operator] && !_revokedDefaultOperators[tokenHolder][operator]) ||
            _operators[tokenHolder][operator];
    }

    /**
     * @dev See {IERC777-authorizeOperator}.
     */
    function authorizeOperator(address operator) public virtual override {
        require(_msgSender() != operator, "ERC777: authorizing self as operator");

        if (_defaultOperators[operator]) {
            delete _revokedDefaultOperators[_msgSender()][operator];
        } else {
            _operators[_msgSender()][operator] = true;
        }

        emit AuthorizedOperator(operator, _msgSender());
    }

    /**
     * @dev See {IERC777-revokeOperator}.
     */
    function revokeOperator(address operator) public virtual override {
        require(operator != _msgSender(), "ERC777: revoking self as operator");

        if (_defaultOperators[operator]) {
            _revokedDefaultOperators[_msgSender()][operator] = true;
        } else {
            delete _operators[_msgSender()][operator];
        }

        emit RevokedOperator(operator, _msgSender());
    }

    /**
     * @dev See {IERC777-defaultOperators}.
     */
    function defaultOperators() public view virtual override returns (address[] memory) {
        return _defaultOperatorsArray;
    }

    /**
     * @dev See {IERC777-operatorSend}.
     *
     * Emits {Sent} and {IERC20-Transfer} events.
     */
    function operatorSend(
        address sender,
        address recipient,
        uint256 amount,
        bytes memory data,
        bytes memory operatorData
    ) public virtual override {
        require(isOperatorFor(_msgSender(), sender), "ERC777: caller is not an operator for holder");
        _send(sender, recipient, amount, data, operatorData, true);
    }

    /**
     * @dev See {IERC777-operatorBurn}.
     *
     * Emits {Burned} and {IERC20-Transfer} events.
     */
    function operatorBurn(
        address account,
        uint256 amount,
        bytes memory data,
        bytes memory operatorData
    ) public virtual override {
        require(isOperatorFor(_msgSender(), account), "ERC777: caller is not an operator for holder");
        _burn(account, amount, data, operatorData);
    }

    /**
     * @dev See {IERC20-allowance}.
     *
     * Note that operator and allowance concepts are orthogonal: operators may
     * not have allowance, and accounts with allowance may not be operators
     * themselves.
     */
    function allowance(address holder, address spender) public view virtual override returns (uint256) {
        return _allowances[holder][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Note that accounts cannot have allowance issued by their operators.
     */
    function approve(address spender, uint256 value) public virtual override returns (bool) {
        address holder = _msgSender();
        _approve(holder, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Note that operator and allowance concepts are orthogonal: operators cannot
     * call `transferFrom` (unless they have allowance), and accounts with
     * allowance cannot call `operatorSend` (unless they are operators).
     *
     * Emits {Sent}, {IERC20-Transfer} and {IERC20-Approval} events.
     */
    function transferFrom(
        address holder,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        require(recipient != address(0), "ERC777: transfer to the zero address");
        require(holder != address(0), "ERC777: transfer from the zero address");

        address spender = _msgSender();

        _callTokensToSend(spender, holder, recipient, amount, "", "");

        _move(spender, holder, recipient, amount, "", "");

        uint256 currentAllowance = _allowances[holder][spender];
        require(currentAllowance >= amount, "ERC777: transfer amount exceeds allowance");
        _approve(holder, spender, currentAllowance - amount);

        _callTokensReceived(spender, holder, recipient, amount, "", "", false);

        return true;
    }

    /**
     * @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * If a send hook is registered for `account`, the corresponding function
     * will be called with `operator`, `data` and `operatorData`.
     *
     * See {IERC777Sender} and {IERC777Recipient}.
     *
     * Emits {Minted} and {IERC20-Transfer} events.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - if `account` is a contract, it must implement the {IERC777Recipient}
     * interface.
     */
    function _mint(
        address account,
        uint256 amount,
        bytes memory userData,
        bytes memory operatorData
    ) internal virtual {
        _mint(account, amount, userData, operatorData, true);
    }

    /**
     * @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * If `requireReceptionAck` is set to true, and if a send hook is
     * registered for `account`, the corresponding function will be called with
     * `operator`, `data` and `operatorData`.
     *
     * See {IERC777Sender} and {IERC777Recipient}.
     *
     * Emits {Minted} and {IERC20-Transfer} events.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - if `account` is a contract, it must implement the {IERC777Recipient}
     * interface.
     */
    function _mint(
        address account,
        uint256 amount,
        bytes memory userData,
        bytes memory operatorData,
        bool requireReceptionAck
    ) internal virtual {
        require(account != address(0), "ERC777: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), account, amount);

        // Update state variables
        _totalSupply += amount;
        _balances[account] += amount;

        _callTokensReceived(operator, address(0), account, amount, userData, operatorData, requireReceptionAck);

        emit Minted(operator, account, amount, userData, operatorData);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Send tokens
     * @param from address token holder address
     * @param to address recipient address
     * @param amount uint256 amount of tokens to transfer
     * @param userData bytes extra information provided by the token holder (if any)
     * @param operatorData bytes extra information provided by the operator (if any)
     * @param requireReceptionAck if true, contract recipients are required to implement ERC777TokensRecipient
     */
    function _send(
        address from,
        address to,
        uint256 amount,
        bytes memory userData,
        bytes memory operatorData,
        bool requireReceptionAck
    ) internal virtual {
        require(from != address(0), "ERC777: send from the zero address");
        require(to != address(0), "ERC777: send to the zero address");

        address operator = _msgSender();

        _callTokensToSend(operator, from, to, amount, userData, operatorData);

        _move(operator, from, to, amount, userData, operatorData);

        _callTokensReceived(operator, from, to, amount, userData, operatorData, requireReceptionAck);
    }

    /**
     * @dev Burn tokens
     * @param from address token holder address
     * @param amount uint256 amount of tokens to burn
     * @param data bytes extra information provided by the token holder
     * @param operatorData bytes extra information provided by the operator (if any)
     */
    function _burn(
        address from,
        uint256 amount,
        bytes memory data,
        bytes memory operatorData
    ) internal virtual {
        require(from != address(0), "ERC777: burn from the zero address");

        address operator = _msgSender();

        _callTokensToSend(operator, from, address(0), amount, data, operatorData);

        _beforeTokenTransfer(operator, from, address(0), amount);

        // Update state variables
        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC777: burn amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _totalSupply -= amount;

        emit Burned(operator, from, amount, data, operatorData);
        emit Transfer(from, address(0), amount);
    }

    function _move(
        address operator,
        address from,
        address to,
        uint256 amount,
        bytes memory userData,
        bytes memory operatorData
    ) private {
        _beforeTokenTransfer(operator, from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC777: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Sent(operator, from, to, amount, userData, operatorData);
        emit Transfer(from, to, amount);
    }

    /**
     * @dev See {ERC20-_approve}.
     *
     * Note that accounts cannot have allowance issued by their operators.
     */
    function _approve(
        address holder,
        address spender,
        uint256 value
    ) internal {
        require(holder != address(0), "ERC777: approve from the zero address");
        require(spender != address(0), "ERC777: approve to the zero address");

        _allowances[holder][spender] = value;
        emit Approval(holder, spender, value);
    }

    /**
     * @dev Call from.tokensToSend() if the interface is registered
     * @param operator address operator requesting the transfer
     * @param from address token holder address
     * @param to address recipient address
     * @param amount uint256 amount of tokens to transfer
     * @param userData bytes extra information provided by the token holder (if any)
     * @param operatorData bytes extra information provided by the operator (if any)
     */
    function _callTokensToSend(
        address operator,
        address from,
        address to,
        uint256 amount,
        bytes memory userData,
        bytes memory operatorData
    ) private {
        address implementer = _ERC1820_REGISTRY.getInterfaceImplementer(from, _TOKENS_SENDER_INTERFACE_HASH);
        if (implementer != address(0)) {
            IERC777Sender(implementer).tokensToSend(operator, from, to, amount, userData, operatorData);
        }
    }

    /**
     * @dev Call to.tokensReceived() if the interface is registered. Reverts if the recipient is a contract but
     * tokensReceived() was not registered for the recipient
     * @param operator address operator requesting the transfer
     * @param from address token holder address
     * @param to address recipient address
     * @param amount uint256 amount of tokens to transfer
     * @param userData bytes extra information provided by the token holder (if any)
     * @param operatorData bytes extra information provided by the operator (if any)
     * @param requireReceptionAck if true, contract recipients are required to implement ERC777TokensRecipient
     */
    function _callTokensReceived(
        address operator,
        address from,
        address to,
        uint256 amount,
        bytes memory userData,
        bytes memory operatorData,
        bool requireReceptionAck
    ) private {
        address implementer = _ERC1820_REGISTRY.getInterfaceImplementer(to, _TOKENS_RECIPIENT_INTERFACE_HASH);
        if (implementer != address(0)) {
            IERC777Recipient(implementer).tokensReceived(operator, from, to, amount, userData, operatorData);
        } else if (requireReceptionAck) {
            require(!to.isContract(), "ERC777: token recipient contract has no implementer for ERC777TokensRecipient");
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes
     * calls to {send}, {transfer}, {operatorSend}, minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens 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 operator,
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 7 of 12: IERC1820Registry.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the global ERC1820 Registry, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1820[EIP]. Accounts may register
 * implementers for interfaces in this registry, as well as query support.
 *
 * Implementers may be shared by multiple accounts, and can also implement more
 * than a single interface for each account. Contracts can implement interfaces
 * for themselves, but externally-owned accounts (EOA) must delegate this to a
 * contract.
 *
 * {IERC165} interfaces can also be queried via the registry.
 *
 * For an in-depth explanation and source code analysis, see the EIP text.
 */
interface IERC1820Registry {
    /**
     * @dev Sets `newManager` as the manager for `account`. A manager of an
     * account is able to set interface implementers for it.
     *
     * By default, each account is its own manager. Passing a value of `0x0` in
     * `newManager` will reset the manager to this initial state.
     *
     * Emits a {ManagerChanged} event.
     *
     * Requirements:
     *
     * - the caller must be the current manager for `account`.
     */
    function setManager(address account, address newManager) external;

    /**
     * @dev Returns the manager for `account`.
     *
     * See {setManager}.
     */
    function getManager(address account) external view returns (address);

    /**
     * @dev Sets the `implementer` contract as ``account``'s implementer for
     * `interfaceHash`.
     *
     * `account` being the zero address is an alias for the caller's address.
     * The zero address can also be used in `implementer` to remove an old one.
     *
     * See {interfaceHash} to learn how these are created.
     *
     * Emits an {InterfaceImplementerSet} event.
     *
     * Requirements:
     *
     * - the caller must be the current manager for `account`.
     * - `interfaceHash` must not be an {IERC165} interface id (i.e. it must not
     * end in 28 zeroes).
     * - `implementer` must implement {IERC1820Implementer} and return true when
     * queried for support, unless `implementer` is the caller. See
     * {IERC1820Implementer-canImplementInterfaceForAddress}.
     */
    function setInterfaceImplementer(
        address account,
        bytes32 _interfaceHash,
        address implementer
    ) external;

    /**
     * @dev Returns the implementer of `interfaceHash` for `account`. If no such
     * implementer is registered, returns the zero address.
     *
     * If `interfaceHash` is an {IERC165} interface id (i.e. it ends with 28
     * zeroes), `account` will be queried for support of it.
     *
     * `account` being the zero address is an alias for the caller's address.
     */
    function getInterfaceImplementer(address account, bytes32 _interfaceHash) external view returns (address);

    /**
     * @dev Returns the interface hash for an `interfaceName`, as defined in the
     * corresponding
     * https://eips.ethereum.org/EIPS/eip-1820#interface-name[section of the EIP].
     */
    function interfaceHash(string calldata interfaceName) external pure returns (bytes32);

    /**
     * @notice Updates the cache with whether the contract implements an ERC165 interface or not.
     * @param account Address of the contract for which to update the cache.
     * @param interfaceId ERC165 interface for which to update the cache.
     */
    function updateERC165Cache(address account, bytes4 interfaceId) external;

    /**
     * @notice Checks whether a contract implements an ERC165 interface or not.
     * If the result is not cached a direct lookup on the contract address is performed.
     * If the result is not cached or the cached value is out-of-date, the cache MUST be updated manually by calling
     * {updateERC165Cache} with the contract address.
     * @param account Address of the contract to check.
     * @param interfaceId ERC165 interface to check.
     * @return True if `account` implements `interfaceId`, false otherwise.
     */
    function implementsERC165Interface(address account, bytes4 interfaceId) external view returns (bool);

    /**
     * @notice Checks whether a contract implements an ERC165 interface or not without using nor updating the cache.
     * @param account Address of the contract to check.
     * @param interfaceId ERC165 interface to check.
     * @return True if `account` implements `interfaceId`, false otherwise.
     */
    function implementsERC165InterfaceNoCache(address account, bytes4 interfaceId) external view returns (bool);

    event InterfaceImplementerSet(address indexed account, bytes32 indexed interfaceHash, address indexed implementer);

    event ManagerChanged(address indexed account, address indexed newManager);
}

File 8 of 12: IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 9 of 12: IERC777.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC777Token standard as defined in the EIP.
 *
 * This contract uses the
 * https://eips.ethereum.org/EIPS/eip-1820[ERC1820 registry standard] to let
 * token holders and recipients react to token movements by using setting implementers
 * for the associated interfaces in said registry. See {IERC1820Registry} and
 * {ERC1820Implementer}.
 */
interface IERC777 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the smallest part of the token that is not divisible. This
     * means all token operations (creation, movement and destruction) must have
     * amounts that are a multiple of this number.
     *
     * For most token contracts, this value will equal 1.
     */
    function granularity() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by an account (`owner`).
     */
    function balanceOf(address owner) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * If send or receive hooks are registered for the caller and `recipient`,
     * the corresponding functions will be called with `data` and empty
     * `operatorData`. See {IERC777Sender} and {IERC777Recipient}.
     *
     * Emits a {Sent} event.
     *
     * Requirements
     *
     * - the caller must have at least `amount` tokens.
     * - `recipient` cannot be the zero address.
     * - if `recipient` is a contract, it must implement the {IERC777Recipient}
     * interface.
     */
    function send(
        address recipient,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev Destroys `amount` tokens from the caller's account, reducing the
     * total supply.
     *
     * If a send hook is registered for the caller, the corresponding function
     * will be called with `data` and empty `operatorData`. See {IERC777Sender}.
     *
     * Emits a {Burned} event.
     *
     * Requirements
     *
     * - the caller must have at least `amount` tokens.
     */
    function burn(uint256 amount, bytes calldata data) external;

    /**
     * @dev Returns true if an account is an operator of `tokenHolder`.
     * Operators can send and burn tokens on behalf of their owners. All
     * accounts are their own operator.
     *
     * See {operatorSend} and {operatorBurn}.
     */
    function isOperatorFor(address operator, address tokenHolder) external view returns (bool);

    /**
     * @dev Make an account an operator of the caller.
     *
     * See {isOperatorFor}.
     *
     * Emits an {AuthorizedOperator} event.
     *
     * Requirements
     *
     * - `operator` cannot be calling address.
     */
    function authorizeOperator(address operator) external;

    /**
     * @dev Revoke an account's operator status for the caller.
     *
     * See {isOperatorFor} and {defaultOperators}.
     *
     * Emits a {RevokedOperator} event.
     *
     * Requirements
     *
     * - `operator` cannot be calling address.
     */
    function revokeOperator(address operator) external;

    /**
     * @dev Returns the list of default operators. These accounts are operators
     * for all token holders, even if {authorizeOperator} was never called on
     * them.
     *
     * This list is immutable, but individual holders may revoke these via
     * {revokeOperator}, in which case {isOperatorFor} will return false.
     */
    function defaultOperators() external view returns (address[] memory);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient`. The caller must
     * be an operator of `sender`.
     *
     * If send or receive hooks are registered for `sender` and `recipient`,
     * the corresponding functions will be called with `data` and
     * `operatorData`. See {IERC777Sender} and {IERC777Recipient}.
     *
     * Emits a {Sent} event.
     *
     * Requirements
     *
     * - `sender` cannot be the zero address.
     * - `sender` must have at least `amount` tokens.
     * - the caller must be an operator for `sender`.
     * - `recipient` cannot be the zero address.
     * - if `recipient` is a contract, it must implement the {IERC777Recipient}
     * interface.
     */
    function operatorSend(
        address sender,
        address recipient,
        uint256 amount,
        bytes calldata data,
        bytes calldata operatorData
    ) external;

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the total supply.
     * The caller must be an operator of `account`.
     *
     * If a send hook is registered for `account`, the corresponding function
     * will be called with `data` and `operatorData`. See {IERC777Sender}.
     *
     * Emits a {Burned} event.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     * - the caller must be an operator for `account`.
     */
    function operatorBurn(
        address account,
        uint256 amount,
        bytes calldata data,
        bytes calldata operatorData
    ) external;

    event Sent(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256 amount,
        bytes data,
        bytes operatorData
    );

    event Minted(address indexed operator, address indexed to, uint256 amount, bytes data, bytes operatorData);

    event Burned(address indexed operator, address indexed from, uint256 amount, bytes data, bytes operatorData);

    event AuthorizedOperator(address indexed operator, address indexed tokenHolder);

    event RevokedOperator(address indexed operator, address indexed tokenHolder);
}

File 10 of 12: IERC777Recipient.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC777TokensRecipient standard as defined in the EIP.
 *
 * Accounts can be notified of {IERC777} tokens being sent to them by having a
 * contract implement this interface (contract holders can be their own
 * implementer) and registering it on the
 * https://eips.ethereum.org/EIPS/eip-1820[ERC1820 global registry].
 *
 * See {IERC1820Registry} and {ERC1820Implementer}.
 */
interface IERC777Recipient {
    /**
     * @dev Called by an {IERC777} token contract whenever tokens are being
     * moved or created into a registered account (`to`). The type of operation
     * is conveyed by `from` being the zero address or not.
     *
     * This call occurs _after_ the token contract's state is updated, so
     * {IERC777-balanceOf}, etc., can be used to query the post-operation state.
     *
     * This function may revert to prevent the operation from being executed.
     */
    function tokensReceived(
        address operator,
        address from,
        address to,
        uint256 amount,
        bytes calldata userData,
        bytes calldata operatorData
    ) external;
}

File 11 of 12: IERC777Sender.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC777TokensSender standard as defined in the EIP.
 *
 * {IERC777} Token holders can be notified of operations performed on their
 * tokens by having a contract implement this interface (contract holders can be
 * their own implementer) and registering it on the
 * https://eips.ethereum.org/EIPS/eip-1820[ERC1820 global registry].
 *
 * See {IERC1820Registry} and {ERC1820Implementer}.
 */
interface IERC777Sender {
    /**
     * @dev Called by an {IERC777} token contract whenever a registered holder's
     * (`from`) tokens are about to be moved or destroyed. The type of operation
     * is conveyed by `to` being the zero address or not.
     *
     * This call occurs _before_ the token contract's state is updated, so
     * {IERC777-balanceOf}, etc., can be used to query the pre-operation state.
     *
     * This function may revert to prevent the operation from being executed.
     */
    function tokensToSend(
        address operator,
        address from,
        address to,
        uint256 amount,
        bytes calldata userData,
        bytes calldata operatorData
    ) external;
}

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":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"operatorData","type":"bytes"}],"name":"Burned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"operatorData","type":"bytes"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"TransferWithData","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emitTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"live","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"account","type":"address[]"},{"internalType":"uint96[]","name":"amount","type":"uint96[]"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintFinish","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8[]","name":"curveHalvingYears","type":"uint8[]"}],"name":"setCurve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"reserve","type":"address"}],"name":"setReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferAndCall","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferFromAndCall","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwner","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60038054600160601b600160a01b031916815561026060405260056101408181526101609190915260046101808190526101a0526101c08290526101e09190915260026102008190526102205260016102405262000062906007906009620001a8565b50600880546001600160601b0319166b026c62ad77dc602dae0000001790557f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c961012052348015620000b357600080fd5b5060408051808201825260038152621511d560ea1b60208083019182528351808501855260018152603160f81b908201529151902060c08181527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660e08190524660a081815286517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818801819052818901969096526060810193909352608080840192909252308382015286518084039091018152919092019094528351939092019290922090526101005260048054336001600160a01b031991821681179092556005805490911690911790556200026c565b82805482825590600052602060002090601f01602090048101928215620002435791602002820160005b838211156200021257835183826101000a81548160ff021916908360ff1602179055509260200192600101602081600001049283019260010302620001d2565b8015620002415782816101000a81549060ff021916905560010160208160000104928301926001030262000212565b505b506200025192915062000255565b5090565b5b8082111562000251576000815560010162000256565b60805160a05160c05160e05161010051610120516132b6620002bc6000396000611f67015260006127c701526000612816015260006127f1015260006127750152600061279e01526132b66000f3fe608060405234801561001057600080fd5b50600436106101985760003560e01c80637ecebe00116100e3578063a77386761161008c578063c89aee8311610066578063c89aee83146103c7578063d505accf146103cf578063dd62ed3e146103e257600080fd5b8063a77386761461038e578063a9059cbb146103a1578063c1d34b89146103b457600080fd5b806395d89b41116100bd57806395d89b411461032f5780639cecc80a14610368578063a457c2d71461037b57600080fd5b80637ecebe00146102de578063807a599c146102f1578063957aa58c146102f957600080fd5b80633644e5151161014557806342966c681161011f57806342966c68146102825780634fb2e45d1461029557806370a08231146102a857600080fd5b80633644e51514610254578063395093511461025c5780634000aea01461026f57600080fd5b806318160ddd1161017657806318160ddd1461022057806323b872dd14610232578063313ce5671461024557600080fd5b806306fdde031461019d578063095ea7b3146101e857806317fff0f11461020b575b600080fd5b60408051808201909152601b81527f54484f5257616c6c657420476f7665726e616e636520546f6b656e000000000060208201525b6040516101df9190613026565b60405180910390f35b6101fb6101f6366004612e15565b610428565b60405190151581526020016101df565b61021e610219366004612e99565b61043e565b005b6002545b6040519081526020016101df565b6101fb610240366004612d00565b610987565b604051601281526020016101df565b610224610b90565b6101fb61026a366004612e15565b610b9f565b6101fb61027d366004612e3f565b610be8565b61021e610290366004612f3b565b610c03565b61021e6102a3366004612cab565b610c29565b6102246102b6366004612cab565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6102246102ec366004612cab565b610e38565b61021e610e65565b6003546c01000000000000000000000000900467ffffffffffffffff1660405167ffffffffffffffff90911681526020016101df565b60408051808201909152600381527f544754000000000000000000000000000000000000000000000000000000000060208201526101d2565b61021e610376366004612cab565b611072565b6101fb610389366004612e15565b61125d565b61021e61039c366004612ef9565b611335565b6101fb6103af366004612e15565b61158a565b6101fb6103c2366004612d3c565b6116ba565b61021e6117ce565b61021e6103dd366004612dab565b611ef9565b6102246103f0366004612ccd565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b60006104353384846120e3565b50600192915050565b60045473ffffffffffffffffffffffffffffffffffffffff1633146104c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f5447543a206e6f7420746865206f776e6572000000000000000000000000000060448201526064015b60405180910390fd5b828114610553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f5447543a206163636f756e747320616e6420616d6f756e7473206c656e67746860448201527f206d757374206d6174636800000000000000000000000000000000000000000060648201526084016104bb565b6003546c01000000000000000000000000900467ffffffffffffffff16156105fd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603f60248201527f5447543a20636f6e747261637420616c7265616479206c6976652e204974207360448201527f686f756c64206265206e6f74206c69766520286c6976653d3d66616c7365290060648201526084016104bb565b60005b8381101561090857600085858381811061061c5761061c613251565b90506020020160208101906106319190612cab565b73ffffffffffffffffffffffffffffffffffffffff1614156106af576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104bb565b308585838181106106c2576106c2613251565b90506020020160208101906106d79190612cab565b73ffffffffffffffffffffffffffffffffffffffff161415610755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f5447543a2073656e646572206973207468697320636f6e74726163740000000060448201526064016104bb565b82828281811061076757610767613251565b905060200201602081019061077c9190612f6f565b6bffffffffffffffffffffffff166002600082825461079b91906130b3565b9091555083905082828181106107b3576107b3613251565b90506020020160208101906107c89190612f6f565b6bffffffffffffffffffffffff166000808787858181106107eb576107eb613251565b90506020020160208101906108009190612cab565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461084991906130b3565b90915550859050848281811061086157610861613251565b90506020020160208101906108769190612cab565b73ffffffffffffffffffffffffffffffffffffffff1660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8585858181106108c1576108c1613251565b90506020020160208101906108d69190612f6f565b6040516bffffffffffffffffffffffff909116815260200160405180910390a380610900816131ba565b915050610600565b506002546b026c62ad77dc602dae0000001015610981576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f5447543a2073757270617373696e6720494e49545f535550504c59000000000060448201526064016104bb565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff8316610a2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016104bb565b73ffffffffffffffffffffffffffffffffffffffff8316301415610aac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f45524332303a207472616e7366657220746f207468697320636f6e747261637460448201526064016104bb565b610ab7848484612437565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260016020908152604080832033845290915290205482811015610b78576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084016104bb565b610b8585338584036120e3565b506001949350505050565b6000610b9a612771565b905090565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610435918590610be39086906130b3565b6120e3565b6000610bf733868686866116ba565b50600195945050505050565b610c0f33600083612437565b8060026000828254610c219190613155565b909155505050565b60045473ffffffffffffffffffffffffffffffffffffffff163314610caa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f5447543a206e6f7420746865206f776e6572000000000000000000000000000060448201526064016104bb565b73ffffffffffffffffffffffffffffffffffffffff8116610d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f5447543a207472616e73666572206f776e657220746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016104bb565b73ffffffffffffffffffffffffffffffffffffffff8116301415610df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f5447543a207472616e73666572206f776e657220746f207468697320636f6e7460448201527f726163740000000000000000000000000000000000000000000000000000000060648201526084016104bb565b600480547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600960205260408120545b92915050565b60045473ffffffffffffffffffffffffffffffffffffffff163314610ee6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f5447543a206e6f7420746865206f776e6572000000000000000000000000000060448201526064016104bb565b6002546b026c62ad77dc602dae00000014610f5d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5447543a20737570706c79206d69736d6174636800000000000000000000000060448201526064016104bb565b6003546c01000000000000000000000000900467ffffffffffffffff161561102d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604260248201527f5447543a20636f6e7472616374206973206c69766520616c72656164792e204960448201527f742073686f756c64206265206e6f74206c69766520286c6976653d3d66616c7360648201527f6529000000000000000000000000000000000000000000000000000000000000608482015260a4016104bb565b600380547fffffffffffffffffffffffff0000000000000000ffffffffffffffffffffffff166c010000000000000000000000004267ffffffffffffffff1602179055565b60045473ffffffffffffffffffffffffffffffffffffffff1633146110f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f5447543a206e6f7420746865206f776e6572000000000000000000000000000060448201526064016104bb565b73ffffffffffffffffffffffffffffffffffffffff8116611170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f5447543a20736574207265736572766520746f207a65726f206164647265737360448201526064016104bb565b73ffffffffffffffffffffffffffffffffffffffff8116301415611216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f5447543a20736574207265736572766520746f207468697320636f6e7472616360448201527f740000000000000000000000000000000000000000000000000000000000000060648201526084016104bb565b600580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b33600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff861684529091528120548281101561131e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016104bb565b61132b33858584036120e3565b5060019392505050565b60045473ffffffffffffffffffffffffffffffffffffffff1633146113b6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f5447543a206e6f7420746865206f776e6572000000000000000000000000000060448201526064016104bb565b6005811015611421576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5447543a20637572766548616c76696e675965617273206e6f74203e3d20350060448201526064016104bb565b818161142e600182613155565b81811061143d5761143d613251565b90506020020160208101906114529190612f54565b60ff166001146114be576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f5447543a206c6173742076616c7565206d75737420626520310000000000000060448201526064016104bb565b60005b6114cc600183613155565b8110156115785760018383838181106114e7576114e7613251565b90506020020160208101906114fc9190612f54565b60ff1611611566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f5447543a2076616c756573206d757374206265203e203100000000000000000060448201526064016104bb565b80611570816131ba565b9150506114c1565b5061158560078383612b25565b505050565b600073ffffffffffffffffffffffffffffffffffffffff831661162f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016104bb565b73ffffffffffffffffffffffffffffffffffffffff83163014156116af576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f45524332303a207472616e7366657220746f207468697320636f6e747261637460448201526064016104bb565b610435338484612437565b60006116c7868686610987565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fe68ca1ec8e8e022357047aae1f96036cbb808c6dc2bbbfbd3bde507ab21098c486868660405161172993929190613099565b60405180910390a3843b15610bf7576040517fa4c0ed3600000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff86169063a4c0ed3690611790908990889088908890600401612fe6565b600060405180830381600087803b1580156117aa57600080fd5b505af11580156117be573d6000803e3d6000fd5b5050505050600195945050505050565b6003546c01000000000000000000000000900467ffffffffffffffff16611877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603a60248201527f5447543a20636f6e7472616374206e6f74206c697665207965742e204974207360448201527f686f756c64206265206c69766520286c6976653d3d747275652900000000000060648201526084016104bb565b60035460009062278d00906118a6906c01000000000000000000000000900467ffffffffffffffff1642613155565b6118b091906130fb565b60055490915067ffffffffffffffff740100000000000000000000000000000000000000009091048116908216116118e55750565b6000600c6118f460018461316c565b6118fe919061310f565b60075490915067ffffffffffffffff821610611b3657600580547fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff167bffffffffffffffff00000000000000000000000000000000000000001790556003546000906bffffffffffffffffffffffff166119906b026c62ad77dc602dae0000006b033b2e3c9fd0803ce8000000613195565b61199a9190613195565b9050806bffffffffffffffffffffffff16600260008282546119bc91906130b3565b909155505060055473ffffffffffffffffffffffffffffffffffffffff16600090815260208190526040812080546bffffffffffffffffffffffff84169290611a069084906130b3565b909155505060055473ffffffffffffffffffffffffffffffffffffffff163b15611ad0576005546040517fa4c0ed360000000000000000000000000000000000000000000000000000000081523060048201526bffffffffffffffffffffffff83166024820152606060448201526000606482015273ffffffffffffffffffffffffffffffffffffffff9091169063a4c0ed3690608401600060405180830381600087803b158015611ab757600080fd5b505af1158015611acb573d6000803e3d6000fd5b505050505b6005546040516bffffffffffffffffffffffff8316815273ffffffffffffffffffffffffffffffffffffffff909116906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020015b60405180910390a3505050565b60065467ffffffffffffffff9081169082161115611c4d57600854600090611b78906bffffffffffffffffffffffff166b033b2e3c9fd0803ce8000000613195565b60065460078054929350600092909167ffffffffffffffff16908110611ba057611ba0613251565b600091825260209182902091810490910154611bc891601f166101000a900460ff1683613136565b600880549192508291600090611bed9084906bffffffffffffffffffffffff166130cb565b82546101009290920a6bffffffffffffffffffffffff8181021990931691909216919091021790555050600680547fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000001667ffffffffffffffff8416179055505b600854600090611c77906bffffffffffffffffffffffff166b033b2e3c9fd0803ce8000000613195565b9050600060078367ffffffffffffffff1681548110611c9857611c98613251565b600091825260209182902091810490910154611cc091601f166101000a900460ff1683613136565b90506000611ccf600c83613136565b9050806bffffffffffffffffffffffff1660026000828254611cf191906130b3565b909155505060038054829190600090611d199084906bffffffffffffffffffffffff166130cb565b82546101009290920a6bffffffffffffffffffffffff81810219909316918316021790915560055473ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604081208054928516935091611d789084906130b3565b90915550506005805467ffffffffffffffff871674010000000000000000000000000000000000000000027fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff8216811790925573ffffffffffffffffffffffffffffffffffffffff9182169116173b15611e92576005546040517fa4c0ed360000000000000000000000000000000000000000000000000000000081523060048201526bffffffffffffffffffffffff83166024820152606060448201526000606482015273ffffffffffffffffffffffffffffffffffffffff9091169063a4c0ed3690608401600060405180830381600087803b158015611e7957600080fd5b505af1158015611e8d573d6000803e3d6000fd5b505050505b6005546040516bffffffffffffffffffffffff8316815273ffffffffffffffffffffffffffffffffffffffff909116906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050505050565b83421115611f63576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e6500000060448201526064016104bb565b60007f0000000000000000000000000000000000000000000000000000000000000000888888611fbd8c73ffffffffffffffffffffffffffffffffffffffff16600090815260096020526040902080546001810190915590565b60408051602081019690965273ffffffffffffffffffffffffffffffffffffffff94851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061202582612864565b90506000612035828787876128cd565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146120cc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e6174757265000060448201526064016104bb565b6120d78a8a8a6120e3565b50505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff8316612185576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016104bb565b73ffffffffffffffffffffffffffffffffffffffff8316301415612205576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f5447543a206f776e6572206973207468697320636f6e7472616374000000000060448201526064016104bb565b73ffffffffffffffffffffffffffffffffffffffff82166122a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016104bb565b73ffffffffffffffffffffffffffffffffffffffff8216301415612328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f5447543a207370656e646572206973207468697320636f6e747261637400000060448201526064016104bb565b6003546c01000000000000000000000000900467ffffffffffffffff166123d1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603a60248201527f5447543a20636f6e7472616374206e6f74206c697665207965742e204974207360448201527f686f756c64206265206c69766520286c6976653d3d747275652900000000000060648201526084016104bb565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259101611b29565b73ffffffffffffffffffffffffffffffffffffffff83166124da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016104bb565b73ffffffffffffffffffffffffffffffffffffffff831630141561255a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f5447543a2073656e646572206973207468697320636f6e74726163740000000060448201526064016104bb565b6003546c01000000000000000000000000900467ffffffffffffffff16612603576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603a60248201527f5447543a20636f6e7472616374206e6f74206c697665207965742e204974207360448201527f686f756c64206265206c69766520286c6976653d3d747275652900000000000060648201526084016104bb565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054818110156126b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016104bb565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082208585039055918516815290812080548492906126fd9084906130b3565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161276391815260200190565b60405180910390a350505050565b60007f00000000000000000000000000000000000000000000000000000000000000004614156127c057507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6000610e5f612871612771565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a082111561297f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f756500000000000000000000000000000000000000000000000000000000000060648201526084016104bb565b8360ff16601b148061299457508360ff16601c145b612a20576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f756500000000000000000000000000000000000000000000000000000000000060648201526084016104bb565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa158015612a74573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116612b1c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016104bb565b95945050505050565b82805482825590600052602060002090601f01602090048101928215612bbe5791602002820160005b83821115612b8f57833560ff1683826101000a81548160ff021916908360ff1602179055509260200192600101602081600001049283019260010302612b4e565b8015612bbc5782816101000a81549060ff0219169055600101602081600001049283019260010302612b8f565b505b50612bca929150612bce565b5090565b5b80821115612bca5760008155600101612bcf565b803573ffffffffffffffffffffffffffffffffffffffff81168114612c0757600080fd5b919050565b60008083601f840112612c1e57600080fd5b50813567ffffffffffffffff811115612c3657600080fd5b6020830191508360208260051b8501011115612c5157600080fd5b9250929050565b60008083601f840112612c6a57600080fd5b50813567ffffffffffffffff811115612c8257600080fd5b602083019150836020828501011115612c5157600080fd5b803560ff81168114612c0757600080fd5b600060208284031215612cbd57600080fd5b612cc682612be3565b9392505050565b60008060408385031215612ce057600080fd5b612ce983612be3565b9150612cf760208401612be3565b90509250929050565b600080600060608486031215612d1557600080fd5b612d1e84612be3565b9250612d2c60208501612be3565b9150604084013590509250925092565b600080600080600060808688031215612d5457600080fd5b612d5d86612be3565b9450612d6b60208701612be3565b935060408601359250606086013567ffffffffffffffff811115612d8e57600080fd5b612d9a88828901612c58565b969995985093965092949392505050565b600080600080600080600060e0888a031215612dc657600080fd5b612dcf88612be3565b9650612ddd60208901612be3565b95506040880135945060608801359350612df960808901612c9a565b925060a0880135915060c0880135905092959891949750929550565b60008060408385031215612e2857600080fd5b612e3183612be3565b946020939093013593505050565b60008060008060608587031215612e5557600080fd5b612e5e85612be3565b935060208501359250604085013567ffffffffffffffff811115612e8157600080fd5b612e8d87828801612c58565b95989497509550505050565b60008060008060408587031215612eaf57600080fd5b843567ffffffffffffffff80821115612ec757600080fd5b612ed388838901612c0c565b90965094506020870135915080821115612eec57600080fd5b50612e8d87828801612c0c565b60008060208385031215612f0c57600080fd5b823567ffffffffffffffff811115612f2357600080fd5b612f2f85828601612c0c565b90969095509350505050565b600060208284031215612f4d57600080fd5b5035919050565b600060208284031215612f6657600080fd5b612cc682612c9a565b600060208284031215612f8157600080fd5b81356bffffffffffffffffffffffff81168114612cc657600080fd5b8183528181602085013750600060208284010152600060207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f840116840101905092915050565b73ffffffffffffffffffffffffffffffffffffffff8516815283602082015260606040820152600061301c606083018486612f9d565b9695505050505050565b600060208083528351808285015260005b8181101561305357858101830151858201604001528201613037565b81811115613065576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b838152604060208201526000612b1c604083018486612f9d565b600082198211156130c6576130c66131f3565b500190565b60006bffffffffffffffffffffffff8083168185168083038211156130f2576130f26131f3565b01949350505050565b60008261310a5761310a613222565b500490565b600067ffffffffffffffff8084168061312a5761312a613222565b92169190910492915050565b60006bffffffffffffffffffffffff8084168061312a5761312a613222565b600082821015613167576131676131f3565b500390565b600067ffffffffffffffff8381169083168181101561318d5761318d6131f3565b039392505050565b60006bffffffffffffffffffffffff8381169083168181101561318d5761318d6131f3565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156131ec576131ec6131f3565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122027fc53e5e06eaf2558bb89c75d23b9d64255c3c130e7dd0f17680a07be7b4a4064736f6c63430008060033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101985760003560e01c80637ecebe00116100e3578063a77386761161008c578063c89aee8311610066578063c89aee83146103c7578063d505accf146103cf578063dd62ed3e146103e257600080fd5b8063a77386761461038e578063a9059cbb146103a1578063c1d34b89146103b457600080fd5b806395d89b41116100bd57806395d89b411461032f5780639cecc80a14610368578063a457c2d71461037b57600080fd5b80637ecebe00146102de578063807a599c146102f1578063957aa58c146102f957600080fd5b80633644e5151161014557806342966c681161011f57806342966c68146102825780634fb2e45d1461029557806370a08231146102a857600080fd5b80633644e51514610254578063395093511461025c5780634000aea01461026f57600080fd5b806318160ddd1161017657806318160ddd1461022057806323b872dd14610232578063313ce5671461024557600080fd5b806306fdde031461019d578063095ea7b3146101e857806317fff0f11461020b575b600080fd5b60408051808201909152601b81527f54484f5257616c6c657420476f7665726e616e636520546f6b656e000000000060208201525b6040516101df9190613026565b60405180910390f35b6101fb6101f6366004612e15565b610428565b60405190151581526020016101df565b61021e610219366004612e99565b61043e565b005b6002545b6040519081526020016101df565b6101fb610240366004612d00565b610987565b604051601281526020016101df565b610224610b90565b6101fb61026a366004612e15565b610b9f565b6101fb61027d366004612e3f565b610be8565b61021e610290366004612f3b565b610c03565b61021e6102a3366004612cab565b610c29565b6102246102b6366004612cab565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6102246102ec366004612cab565b610e38565b61021e610e65565b6003546c01000000000000000000000000900467ffffffffffffffff1660405167ffffffffffffffff90911681526020016101df565b60408051808201909152600381527f544754000000000000000000000000000000000000000000000000000000000060208201526101d2565b61021e610376366004612cab565b611072565b6101fb610389366004612e15565b61125d565b61021e61039c366004612ef9565b611335565b6101fb6103af366004612e15565b61158a565b6101fb6103c2366004612d3c565b6116ba565b61021e6117ce565b61021e6103dd366004612dab565b611ef9565b6102246103f0366004612ccd565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b60006104353384846120e3565b50600192915050565b60045473ffffffffffffffffffffffffffffffffffffffff1633146104c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f5447543a206e6f7420746865206f776e6572000000000000000000000000000060448201526064015b60405180910390fd5b828114610553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f5447543a206163636f756e747320616e6420616d6f756e7473206c656e67746860448201527f206d757374206d6174636800000000000000000000000000000000000000000060648201526084016104bb565b6003546c01000000000000000000000000900467ffffffffffffffff16156105fd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603f60248201527f5447543a20636f6e747261637420616c7265616479206c6976652e204974207360448201527f686f756c64206265206e6f74206c69766520286c6976653d3d66616c7365290060648201526084016104bb565b60005b8381101561090857600085858381811061061c5761061c613251565b90506020020160208101906106319190612cab565b73ffffffffffffffffffffffffffffffffffffffff1614156106af576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104bb565b308585838181106106c2576106c2613251565b90506020020160208101906106d79190612cab565b73ffffffffffffffffffffffffffffffffffffffff161415610755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f5447543a2073656e646572206973207468697320636f6e74726163740000000060448201526064016104bb565b82828281811061076757610767613251565b905060200201602081019061077c9190612f6f565b6bffffffffffffffffffffffff166002600082825461079b91906130b3565b9091555083905082828181106107b3576107b3613251565b90506020020160208101906107c89190612f6f565b6bffffffffffffffffffffffff166000808787858181106107eb576107eb613251565b90506020020160208101906108009190612cab565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461084991906130b3565b90915550859050848281811061086157610861613251565b90506020020160208101906108769190612cab565b73ffffffffffffffffffffffffffffffffffffffff1660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8585858181106108c1576108c1613251565b90506020020160208101906108d69190612f6f565b6040516bffffffffffffffffffffffff909116815260200160405180910390a380610900816131ba565b915050610600565b506002546b026c62ad77dc602dae0000001015610981576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f5447543a2073757270617373696e6720494e49545f535550504c59000000000060448201526064016104bb565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff8316610a2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016104bb565b73ffffffffffffffffffffffffffffffffffffffff8316301415610aac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f45524332303a207472616e7366657220746f207468697320636f6e747261637460448201526064016104bb565b610ab7848484612437565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260016020908152604080832033845290915290205482811015610b78576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084016104bb565b610b8585338584036120e3565b506001949350505050565b6000610b9a612771565b905090565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610435918590610be39086906130b3565b6120e3565b6000610bf733868686866116ba565b50600195945050505050565b610c0f33600083612437565b8060026000828254610c219190613155565b909155505050565b60045473ffffffffffffffffffffffffffffffffffffffff163314610caa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f5447543a206e6f7420746865206f776e6572000000000000000000000000000060448201526064016104bb565b73ffffffffffffffffffffffffffffffffffffffff8116610d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f5447543a207472616e73666572206f776e657220746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016104bb565b73ffffffffffffffffffffffffffffffffffffffff8116301415610df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f5447543a207472616e73666572206f776e657220746f207468697320636f6e7460448201527f726163740000000000000000000000000000000000000000000000000000000060648201526084016104bb565b600480547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600960205260408120545b92915050565b60045473ffffffffffffffffffffffffffffffffffffffff163314610ee6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f5447543a206e6f7420746865206f776e6572000000000000000000000000000060448201526064016104bb565b6002546b026c62ad77dc602dae00000014610f5d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5447543a20737570706c79206d69736d6174636800000000000000000000000060448201526064016104bb565b6003546c01000000000000000000000000900467ffffffffffffffff161561102d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604260248201527f5447543a20636f6e7472616374206973206c69766520616c72656164792e204960448201527f742073686f756c64206265206e6f74206c69766520286c6976653d3d66616c7360648201527f6529000000000000000000000000000000000000000000000000000000000000608482015260a4016104bb565b600380547fffffffffffffffffffffffff0000000000000000ffffffffffffffffffffffff166c010000000000000000000000004267ffffffffffffffff1602179055565b60045473ffffffffffffffffffffffffffffffffffffffff1633146110f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f5447543a206e6f7420746865206f776e6572000000000000000000000000000060448201526064016104bb565b73ffffffffffffffffffffffffffffffffffffffff8116611170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f5447543a20736574207265736572766520746f207a65726f206164647265737360448201526064016104bb565b73ffffffffffffffffffffffffffffffffffffffff8116301415611216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f5447543a20736574207265736572766520746f207468697320636f6e7472616360448201527f740000000000000000000000000000000000000000000000000000000000000060648201526084016104bb565b600580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b33600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff861684529091528120548281101561131e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016104bb565b61132b33858584036120e3565b5060019392505050565b60045473ffffffffffffffffffffffffffffffffffffffff1633146113b6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f5447543a206e6f7420746865206f776e6572000000000000000000000000000060448201526064016104bb565b6005811015611421576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5447543a20637572766548616c76696e675965617273206e6f74203e3d20350060448201526064016104bb565b818161142e600182613155565b81811061143d5761143d613251565b90506020020160208101906114529190612f54565b60ff166001146114be576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f5447543a206c6173742076616c7565206d75737420626520310000000000000060448201526064016104bb565b60005b6114cc600183613155565b8110156115785760018383838181106114e7576114e7613251565b90506020020160208101906114fc9190612f54565b60ff1611611566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f5447543a2076616c756573206d757374206265203e203100000000000000000060448201526064016104bb565b80611570816131ba565b9150506114c1565b5061158560078383612b25565b505050565b600073ffffffffffffffffffffffffffffffffffffffff831661162f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016104bb565b73ffffffffffffffffffffffffffffffffffffffff83163014156116af576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f45524332303a207472616e7366657220746f207468697320636f6e747261637460448201526064016104bb565b610435338484612437565b60006116c7868686610987565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fe68ca1ec8e8e022357047aae1f96036cbb808c6dc2bbbfbd3bde507ab21098c486868660405161172993929190613099565b60405180910390a3843b15610bf7576040517fa4c0ed3600000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff86169063a4c0ed3690611790908990889088908890600401612fe6565b600060405180830381600087803b1580156117aa57600080fd5b505af11580156117be573d6000803e3d6000fd5b5050505050600195945050505050565b6003546c01000000000000000000000000900467ffffffffffffffff16611877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603a60248201527f5447543a20636f6e7472616374206e6f74206c697665207965742e204974207360448201527f686f756c64206265206c69766520286c6976653d3d747275652900000000000060648201526084016104bb565b60035460009062278d00906118a6906c01000000000000000000000000900467ffffffffffffffff1642613155565b6118b091906130fb565b60055490915067ffffffffffffffff740100000000000000000000000000000000000000009091048116908216116118e55750565b6000600c6118f460018461316c565b6118fe919061310f565b60075490915067ffffffffffffffff821610611b3657600580547fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff167bffffffffffffffff00000000000000000000000000000000000000001790556003546000906bffffffffffffffffffffffff166119906b026c62ad77dc602dae0000006b033b2e3c9fd0803ce8000000613195565b61199a9190613195565b9050806bffffffffffffffffffffffff16600260008282546119bc91906130b3565b909155505060055473ffffffffffffffffffffffffffffffffffffffff16600090815260208190526040812080546bffffffffffffffffffffffff84169290611a069084906130b3565b909155505060055473ffffffffffffffffffffffffffffffffffffffff163b15611ad0576005546040517fa4c0ed360000000000000000000000000000000000000000000000000000000081523060048201526bffffffffffffffffffffffff83166024820152606060448201526000606482015273ffffffffffffffffffffffffffffffffffffffff9091169063a4c0ed3690608401600060405180830381600087803b158015611ab757600080fd5b505af1158015611acb573d6000803e3d6000fd5b505050505b6005546040516bffffffffffffffffffffffff8316815273ffffffffffffffffffffffffffffffffffffffff909116906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020015b60405180910390a3505050565b60065467ffffffffffffffff9081169082161115611c4d57600854600090611b78906bffffffffffffffffffffffff166b033b2e3c9fd0803ce8000000613195565b60065460078054929350600092909167ffffffffffffffff16908110611ba057611ba0613251565b600091825260209182902091810490910154611bc891601f166101000a900460ff1683613136565b600880549192508291600090611bed9084906bffffffffffffffffffffffff166130cb565b82546101009290920a6bffffffffffffffffffffffff8181021990931691909216919091021790555050600680547fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000001667ffffffffffffffff8416179055505b600854600090611c77906bffffffffffffffffffffffff166b033b2e3c9fd0803ce8000000613195565b9050600060078367ffffffffffffffff1681548110611c9857611c98613251565b600091825260209182902091810490910154611cc091601f166101000a900460ff1683613136565b90506000611ccf600c83613136565b9050806bffffffffffffffffffffffff1660026000828254611cf191906130b3565b909155505060038054829190600090611d199084906bffffffffffffffffffffffff166130cb565b82546101009290920a6bffffffffffffffffffffffff81810219909316918316021790915560055473ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604081208054928516935091611d789084906130b3565b90915550506005805467ffffffffffffffff871674010000000000000000000000000000000000000000027fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff8216811790925573ffffffffffffffffffffffffffffffffffffffff9182169116173b15611e92576005546040517fa4c0ed360000000000000000000000000000000000000000000000000000000081523060048201526bffffffffffffffffffffffff83166024820152606060448201526000606482015273ffffffffffffffffffffffffffffffffffffffff9091169063a4c0ed3690608401600060405180830381600087803b158015611e7957600080fd5b505af1158015611e8d573d6000803e3d6000fd5b505050505b6005546040516bffffffffffffffffffffffff8316815273ffffffffffffffffffffffffffffffffffffffff909116906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050505050565b83421115611f63576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e6500000060448201526064016104bb565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888611fbd8c73ffffffffffffffffffffffffffffffffffffffff16600090815260096020526040902080546001810190915590565b60408051602081019690965273ffffffffffffffffffffffffffffffffffffffff94851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061202582612864565b90506000612035828787876128cd565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146120cc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e6174757265000060448201526064016104bb565b6120d78a8a8a6120e3565b50505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff8316612185576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016104bb565b73ffffffffffffffffffffffffffffffffffffffff8316301415612205576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f5447543a206f776e6572206973207468697320636f6e7472616374000000000060448201526064016104bb565b73ffffffffffffffffffffffffffffffffffffffff82166122a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016104bb565b73ffffffffffffffffffffffffffffffffffffffff8216301415612328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f5447543a207370656e646572206973207468697320636f6e747261637400000060448201526064016104bb565b6003546c01000000000000000000000000900467ffffffffffffffff166123d1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603a60248201527f5447543a20636f6e7472616374206e6f74206c697665207965742e204974207360448201527f686f756c64206265206c69766520286c6976653d3d747275652900000000000060648201526084016104bb565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259101611b29565b73ffffffffffffffffffffffffffffffffffffffff83166124da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016104bb565b73ffffffffffffffffffffffffffffffffffffffff831630141561255a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f5447543a2073656e646572206973207468697320636f6e74726163740000000060448201526064016104bb565b6003546c01000000000000000000000000900467ffffffffffffffff16612603576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603a60248201527f5447543a20636f6e7472616374206e6f74206c697665207965742e204974207360448201527f686f756c64206265206c69766520286c6976653d3d747275652900000000000060648201526084016104bb565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054818110156126b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016104bb565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082208585039055918516815290812080548492906126fd9084906130b3565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161276391815260200190565b60405180910390a350505050565b60007f00000000000000000000000000000000000000000000000000000000000000014614156127c057507f4f4c35f0181a4c4e1d23986626ca828f5d7730125884e1e02d535ea9dcb4ee9190565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527f1392e3f1d4a6847cac2549e3fb865b33f97ca5b951fb9ce55b841fc6a9b8477b828401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6000610e5f612871612771565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a082111561297f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f756500000000000000000000000000000000000000000000000000000000000060648201526084016104bb565b8360ff16601b148061299457508360ff16601c145b612a20576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f756500000000000000000000000000000000000000000000000000000000000060648201526084016104bb565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa158015612a74573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116612b1c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016104bb565b95945050505050565b82805482825590600052602060002090601f01602090048101928215612bbe5791602002820160005b83821115612b8f57833560ff1683826101000a81548160ff021916908360ff1602179055509260200192600101602081600001049283019260010302612b4e565b8015612bbc5782816101000a81549060ff0219169055600101602081600001049283019260010302612b8f565b505b50612bca929150612bce565b5090565b5b80821115612bca5760008155600101612bcf565b803573ffffffffffffffffffffffffffffffffffffffff81168114612c0757600080fd5b919050565b60008083601f840112612c1e57600080fd5b50813567ffffffffffffffff811115612c3657600080fd5b6020830191508360208260051b8501011115612c5157600080fd5b9250929050565b60008083601f840112612c6a57600080fd5b50813567ffffffffffffffff811115612c8257600080fd5b602083019150836020828501011115612c5157600080fd5b803560ff81168114612c0757600080fd5b600060208284031215612cbd57600080fd5b612cc682612be3565b9392505050565b60008060408385031215612ce057600080fd5b612ce983612be3565b9150612cf760208401612be3565b90509250929050565b600080600060608486031215612d1557600080fd5b612d1e84612be3565b9250612d2c60208501612be3565b9150604084013590509250925092565b600080600080600060808688031215612d5457600080fd5b612d5d86612be3565b9450612d6b60208701612be3565b935060408601359250606086013567ffffffffffffffff811115612d8e57600080fd5b612d9a88828901612c58565b969995985093965092949392505050565b600080600080600080600060e0888a031215612dc657600080fd5b612dcf88612be3565b9650612ddd60208901612be3565b95506040880135945060608801359350612df960808901612c9a565b925060a0880135915060c0880135905092959891949750929550565b60008060408385031215612e2857600080fd5b612e3183612be3565b946020939093013593505050565b60008060008060608587031215612e5557600080fd5b612e5e85612be3565b935060208501359250604085013567ffffffffffffffff811115612e8157600080fd5b612e8d87828801612c58565b95989497509550505050565b60008060008060408587031215612eaf57600080fd5b843567ffffffffffffffff80821115612ec757600080fd5b612ed388838901612c0c565b90965094506020870135915080821115612eec57600080fd5b50612e8d87828801612c0c565b60008060208385031215612f0c57600080fd5b823567ffffffffffffffff811115612f2357600080fd5b612f2f85828601612c0c565b90969095509350505050565b600060208284031215612f4d57600080fd5b5035919050565b600060208284031215612f6657600080fd5b612cc682612c9a565b600060208284031215612f8157600080fd5b81356bffffffffffffffffffffffff81168114612cc657600080fd5b8183528181602085013750600060208284010152600060207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f840116840101905092915050565b73ffffffffffffffffffffffffffffffffffffffff8516815283602082015260606040820152600061301c606083018486612f9d565b9695505050505050565b600060208083528351808285015260005b8181101561305357858101830151858201604001528201613037565b81811115613065576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b838152604060208201526000612b1c604083018486612f9d565b600082198211156130c6576130c66131f3565b500190565b60006bffffffffffffffffffffffff8083168185168083038211156130f2576130f26131f3565b01949350505050565b60008261310a5761310a613222565b500490565b600067ffffffffffffffff8084168061312a5761312a613222565b92169190910492915050565b60006bffffffffffffffffffffffff8084168061312a5761312a613222565b600082821015613167576131676131f3565b500390565b600067ffffffffffffffff8381169083168181101561318d5761318d6131f3565b039392505050565b60006bffffffffffffffffffffffff8381169083168181101561318d5761318d6131f3565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156131ec576131ec6131f3565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122027fc53e5e06eaf2558bb89c75d23b9d64255c3c130e7dd0f17680a07be7b4a4064736f6c63430008060033

Deployed Bytecode Sourcemap

1412:11320:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3752:122;3831:36;;;;;;;;;;;;;;;;;3752:122;;;;;;;:::i;:::-;;;;;;;;4820:164;;;;;;:::i;:::-;;:::i;:::-;;;7728:14:12;;7721:22;7703:41;;7691:2;7676:18;4820:164:11;7658:92:12;5744:743:11;;;;;;:::i;:::-;;:::i;:::-;;4083:106;4170:12;;4083:106;;;7901:25:12;;;7889:2;7874:18;4083:106:11;7856:76:12;4990:607:11;;;;;;:::i;:::-;;:::i;3986:91::-;;;4068:2;22931:36:12;;22919:2;22904:18;3986:91:11;22886:87:12;12408:113:11;;;:::i;8660:208::-;;;;;;:::i;:::-;;:::i;9282:203::-;;;;;;:::i;:::-;;:::i;5603:135::-;;;;;;:::i;:::-;;:::i;3140:266::-;;;;;;:::i;:::-;;:::i;4195:125::-;;;;;;:::i;:::-;4295:18;;4269:7;4295:18;;;;;;;;;;;;4195:125;12276:126;;;;;;:::i;:::-;;:::i;8389:265::-;;;:::i;3672:74::-;3734:5;;;;;;;3672:74;;22758:18:12;22746:31;;;22728:50;;22716:2;22701:18;3672:74:11;22683:101:12;3880:100:11;3961:12;;;;;;;;;;;;;;;;;3880:100;;3412:254;;;;;;:::i;:::-;;:::i;8874:402::-;;;;;;:::i;:::-;;:::i;2673:461::-;;;;;;:::i;:::-;;:::i;4326:333::-;;;;;;:::i;:::-;;:::i;9491:372::-;;;;;;:::i;:::-;;:::i;6493:1890::-;;;:::i;11710:560::-;;;;;;:::i;:::-;;:::i;4665:149::-;;;;;;:::i;:::-;4780:18;;;;4754:7;4780:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;4665:149;4820:164;4903:4;4919:37;4928:10;4940:7;4949:6;4919:8;:37::i;:::-;-1:-1:-1;4973:4:11;4820:164;;;;:::o;5744:743::-;2620:6;;;;2606:10;:20;2598:51;;;;;;;18575:2:12;2598:51:11;;;18557:21:12;18614:2;18594:18;;;18587:30;18653:20;18633:18;;;18626:48;18691:18;;2598:51:11;;;;;;;;;5855:31;;::::1;5847:87;;;::::0;::::1;::::0;;14165:2:12;5847:87:11::1;::::0;::::1;14147:21:12::0;14204:2;14184:18;;;14177:30;14243:34;14223:18;;;14216:62;14314:13;14294:18;;;14287:41;14345:19;;5847:87:11::1;14137:233:12::0;5847:87:11::1;5952:5;::::0;;;::::1;;;:10:::0;5944:86:::1;;;::::0;::::1;::::0;;17375:2:12;5944:86:11::1;::::0;::::1;17357:21:12::0;17414:2;17394:18;;;17387:30;17453:34;17433:18;;;17426:62;17524:33;17504:18;;;17497:61;17575:19;;5944:86:11::1;17347:253:12::0;5944:86:11::1;6045:9;6041:363;6057:16:::0;;::::1;6041:363;;;6123:1;6101:7:::0;;6109:1;6101:10;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;:24;;;;6093:68;;;::::0;::::1;::::0;;21572:2:12;6093:68:11::1;::::0;::::1;21554:21:12::0;21611:2;21591:18;;;21584:30;21650:33;21630:18;;;21623:61;21701:18;;6093:68:11::1;21544:181:12::0;6093:68:11::1;6205:4;6183:7:::0;;6191:1;6183:10;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;:27;;;;6175:68;;;::::0;::::1;::::0;;12284:2:12;6175:68:11::1;::::0;::::1;12266:21:12::0;12323:2;12303:18;;;12296:30;12362;12342:18;;;12335:58;12410:18;;6175:68:11::1;12256:178:12::0;6175:68:11::1;6274:6;;6281:1;6274:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;6258:25;;:12;;:25;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;6322:6:11;;-1:-1:-1;6322:6:11;6329:1;6322:9;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;6297:34;;:9;:21:::0;6307:7:::1;;6315:1;6307:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;6297:21;;;;;;;;;;;;;;;;:34;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;6371:7:11;;-1:-1:-1;6371:7:11;6379:1;6371:10;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;6350:43;;6367:1;6350:43;6383:6:::0;;6390:1;6383:9;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;6350:43;::::0;23153:26:12;23141:39;;;23123:58;;23111:2;23096:18;6350:43:11::1;;;;;;;6074:3:::0;::::1;::::0;::::1;:::i;:::-;;;;6041:363;;;-1:-1:-1::0;6421:12:11::1;::::0;2311:20:::1;-1:-1:-1::0;6421:27:11::1;6413:67;;;::::0;::::1;::::0;;11096:2:12;6413:67:11::1;::::0;::::1;11078:21:12::0;11135:2;11115:18;;;11108:30;11174:29;11154:18;;;11147:57;11221:18;;6413:67:11::1;11068:177:12::0;6413:67:11::1;5744:743:::0;;;;:::o;4990:607::-;5096:4;5120:23;;;5112:71;;;;;;;10692:2:12;5112:71:11;;;10674:21:12;10731:2;10711:18;;;10704:30;10770:34;10750:18;;;10743:62;10841:5;10821:18;;;10814:33;10864:19;;5112:71:11;10664:225:12;5112:71:11;5201:26;;;5222:4;5201:26;;5193:71;;;;;;;20046:2:12;5193:71:11;;;20028:21:12;;;20065:18;;;20058:30;20124:34;20104:18;;;20097:62;20176:18;;5193:71:11;20018:182:12;5193:71:11;5275:36;5285:6;5293:9;5304:6;5275:9;:36::i;:::-;5349:19;;;5322:24;5349:19;;;:11;:19;;;;;;;;5369:10;5349:31;;;;;;;;5398:26;;;;5390:79;;;;;;;18166:2:12;5390:79:11;;;18148:21:12;18205:2;18185:18;;;18178:30;18244:34;18224:18;;;18217:62;18315:10;18295:18;;;18288:38;18343:19;;5390:79:11;18138:230:12;5390:79:11;5503:55;5512:6;5520:10;5551:6;5532:16;:25;5503:8;:55::i;:::-;-1:-1:-1;5586:4:11;;4990:607;-1:-1:-1;;;;4990:607:11:o;12408:113::-;12468:7;12494:20;:18;:20::i;:::-;12487:27;;12408:113;:::o;8660:208::-;8773:10;8748:4;8794:23;;;:11;:23;;;;;;;;;:32;;;;;;;;;;8748:4;;8764:76;;8785:7;;8794:45;;8829:10;;8794:45;:::i;:::-;8764:8;:76::i;9282:203::-;9385:12;9409:48;9429:10;9441:2;9445:5;9452:4;;9409:19;:48::i;:::-;-1:-1:-1;9474:4:11;;9282:203;-1:-1:-1;;;;;9282:203:11:o;5603:135::-;5658:41;5668:10;5688:1;5692:6;5658:9;:41::i;:::-;5725:6;5709:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;5603:135:11:o;3140:266::-;2620:6;;;;2606:10;:20;2598:51;;;;;;;18575:2:12;2598:51:11;;;18557:21:12;18614:2;18594:18;;;18587:30;18653:20;18633:18;;;18626:48;18691:18;;2598:51:11;18547:168:12;2598:51:11;3224:22:::1;::::0;::::1;3216:71;;;::::0;::::1;::::0;;14980:2:12;3216:71:11::1;::::0;::::1;14962:21:12::0;15019:2;14999:18;;;14992:30;15058:34;15038:18;;;15031:62;15129:6;15109:18;;;15102:34;15153:19;;3216:71:11::1;14952:226:12::0;3216:71:11::1;3305:25;::::0;::::1;3325:4;3305:25;;3297:74;;;::::0;::::1;::::0;;11452:2:12;3297:74:11::1;::::0;::::1;11434:21:12::0;11491:2;11471:18;;;11464:30;11530:34;11510:18;;;11503:62;11601:6;11581:18;;;11574:34;11625:19;;3297:74:11::1;11424:226:12::0;3297:74:11::1;3382:6;:17:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;3140:266::o;12276:126::-;12371:14;;;12345:7;12371:14;;;:7;:14;;;;;864::2;12371:24:11;12364:31;12276:126;-1:-1:-1;;12276:126:11:o;8389:265::-;2620:6;;;;2606:10;:20;2598:51;;;;;;;18575:2:12;2598:51:11;;;18557:21:12;18614:2;18594:18;;;18587:30;18653:20;18633:18;;;18626:48;18691:18;;2598:51:11;18547:168:12;2598:51:11;8454:12:::1;::::0;2311:20:::1;8454:27;8446:60;;;::::0;::::1;::::0;;17026:2:12;8446:60:11::1;::::0;::::1;17008:21:12::0;17065:2;17045:18;;;17038:30;17104:22;17084:18;;;17077:50;17144:18;;8446:60:11::1;16998:170:12::0;8446:60:11::1;8524:5;::::0;;;::::1;;;:10:::0;8516:89:::1;;;::::0;::::1;::::0;;16148:2:12;8516:89:11::1;::::0;::::1;16130:21:12::0;16187:2;16167:18;;;16160:30;16226:34;16206:18;;;16199:62;16297:34;16277:18;;;16270:62;16369:4;16348:19;;;16341:33;16391:19;;8516:89:11::1;16120:296:12::0;8516:89:11::1;8616:5;:31:::0;;;::::1;::::0;8631:15:::1;8616:31;;;;::::0;;8389:265::o;3412:254::-;2620:6;;;;2606:10;:20;2598:51;;;;;;;18575:2:12;2598:51:11;;;18557:21:12;18614:2;18594:18;;;18587:30;18653:20;18633:18;;;18626:48;18691:18;;2598:51:11;18547:168:12;2598:51:11;3492:21:::1;::::0;::::1;3484:66;;;::::0;::::1;::::0;;15787:2:12;3484:66:11::1;::::0;::::1;15769:21:12::0;;;15806:18;;;15799:30;15865:34;15845:18;;;15838:62;15917:18;;3484:66:11::1;15759:182:12::0;3484:66:11::1;3568:24;::::0;::::1;3587:4;3568:24;;3560:70;;;::::0;::::1;::::0;;15385:2:12;3560:70:11::1;::::0;::::1;15367:21:12::0;15424:2;15404:18;;;15397:30;15463:34;15443:18;;;15436:62;15534:3;15514:18;;;15507:31;15555:19;;3560:70:11::1;15357:223:12::0;3560:70:11::1;3641:8;:18:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;3412:254::o;8874:402::-;9022:10;8967:4;9010:23;;;:11;:23;;;;;;;;;:32;;;;;;;;;;9060:35;;;;9052:85;;;;;;;21166:2:12;9052:85:11;;;21148:21:12;21205:2;21185:18;;;21178:30;21244:34;21224:18;;;21217:62;21315:7;21295:18;;;21288:35;21340:19;;9052:85:11;21138:227:12;9052:85:11;9172:65;9181:10;9193:7;9221:15;9202:16;:34;9172:8;:65::i;:::-;-1:-1:-1;9265:4:11;;8874:402;-1:-1:-1;;;8874:402:11:o;2673:461::-;2620:6;;;;2606:10;:20;2598:51;;;;;;;18575:2:12;2598:51:11;;;18557:21:12;18614:2;18594:18;;;18587:30;18653:20;18633:18;;;18626:48;18691:18;;2598:51:11;18547:168:12;2598:51:11;2798:1:::1;2770:29:::0;::::1;;2762:73;;;::::0;::::1;::::0;;18922:2:12;2762:73:11::1;::::0;::::1;18904:21:12::0;18961:2;18941:18;;;18934:30;19000:33;18980:18;;;18973:61;19051:18;;2762:73:11::1;18894:181:12::0;2762:73:11::1;2853:17:::0;;2871:28:::1;2898:1;2853:17:::0;2871:28:::1;:::i;:::-;2853:47;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;:52;;2904:1;2853:52;2845:90;;;::::0;::::1;::::0;;20812:2:12;2845:90:11::1;::::0;::::1;20794:21:12::0;20851:2;20831:18;;;20824:30;20890:27;20870:18;;;20863:55;20935:18;;2845:90:11::1;20784:175:12::0;2845:90:11::1;2949:9;2945:135;2963:26;2988:1;2963:17:::0;:26:::1;:::i;:::-;2961:1;:28;2945:135;;;3040:1;3017:17;;3035:1;3017:20;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;:24;;;3009:60;;;::::0;::::1;::::0;;21932:2:12;3009:60:11::1;::::0;::::1;21914:21:12::0;21971:2;21951:18;;;21944:30;22010:25;21990:18;;;21983:53;22053:18;;3009:60:11::1;21904:173:12::0;3009:60:11::1;2990:3:::0;::::1;::::0;::::1;:::i;:::-;;;;2945:135;;;-1:-1:-1::0;3089:38:11::1;:18;3110:17:::0;;3089:38:::1;:::i;:::-;;2673:461:::0;;:::o;4326:333::-;4412:4;4436:23;;;4428:71;;;;;;;10692:2:12;4428:71:11;;;10674:21:12;10731:2;10711:18;;;10704:30;10770:34;10750:18;;;10743:62;10841:5;10821:18;;;10814:33;10864:19;;4428:71:11;10664:225:12;4428:71:11;4517:26;;;4538:4;4517:26;;4509:71;;;;;;;20046:2:12;4509:71:11;;;20028:21:12;;;20065:18;;;20058:30;20124:34;20104:18;;;20097:62;20176:18;;4509:71:11;20018:182:12;4509:71:11;4591:40;4601:10;4613:9;4624:6;4591:9;:40::i;9491:372::-;9614:12;9638:31;9651:6;9659:2;9663:5;9638:12;:31::i;:::-;;9709:2;9684:41;;9701:6;9684:41;;;9713:5;9720:4;;9684:41;;;;;;;;:::i;:::-;;;;;;;;9991:17;;10026:10;9735:101;;9769:56;;;;;:35;;;;;;:56;;9805:6;;9813:5;;9820:4;;;;9769:56;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9852:4:11;9491:372;;;;;;;:::o;6493:1890::-;6548:5;;;;;;;6540:81;;;;;;;11857:2:12;6540:81:11;;;11839:21:12;11896:2;11876:18;;;11869:30;11935:34;11915:18;;;11908:62;12006:28;11986:18;;;11979:56;12052:19;;6540:81:11;11829:248:12;6540:81:11;6675:5;;6632:14;;2435:17;;6657:23;;6675:5;;;6656:38;6675:5;6657:15;:23;:::i;:::-;6656:38;;;;:::i;:::-;6720:12;;6632:63;;-1:-1:-1;6720:12:11;;;;;;;6709:23;;;;6705:60;;6748:7;6493:1890::o;6705:60::-;6926:14;6959:2;6944:11;6954:1;6944:7;:11;:::i;:::-;6943:18;;;;:::i;:::-;6986;:25;6926:35;;-1:-1:-1;6975:36:11;;;;6971:577;;7027:12;:22;;;;;;;;7192:13;;-1:-1:-1;;7192:13:11;;7164:24;2311:20;2241:21;7164:24;:::i;:::-;7163:42;;;;:::i;:::-;7138:67;;7235:15;7219:31;;:12;;:31;;;;;;;:::i;:::-;;;;-1:-1:-1;;7274:8:11;;;;7264:9;:19;;;;;;;;;;:38;;;;;;:9;:38;;;;;:::i;:::-;;;;-1:-1:-1;;7331:8:11;;;;9991:17;10026:10;7316:136;;7376:8;;7360:77;;;;;7410:4;7360:77;;;7289:74:12;7411:26;7399:39;;7379:18;;;7372:67;7475:2;7455:18;;;7448:30;-1:-1:-1;7494:18:12;;;7487:29;7376:8:11;;;;;7360:41;;7533:19:12;;7360:77:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7316:136;7491:8;;7470:47;;23153:26:12;23141:39;;23123:58;;7491:8:11;;;;;;;7470:47;;23111:2:12;23096:18;7470:47:11;;;;;;;;7531:7;;;6493:1890::o;6971:577::-;7572:12;;;;;;7562:22;;;;7558:267;;;7636:12;;7600:20;;7623:25;;7636:12;;2241:21;7623:25;:::i;:::-;7721:12;;7702:18;:32;;7600:48;;-1:-1:-1;7662:21:11;;7702:18;;7721:12;;;7702:32;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;7686:48;;7702:32;;;;;;;;7686:13;:48;:::i;:::-;7748:12;:30;;7662:72;;-1:-1:-1;7662:72:11;;7748:12;;:30;;7662:72;;7748:30;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;7792:12:11;:22;;;;;;;;;;-1:-1:-1;7558:267:11;7868:12;;7835:17;;7855:25;;7868:12;;2241:21;7855:25;:::i;:::-;7835:45;;7890:17;7923:18;7942:7;7923:27;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;7910:40;;7923:27;;;;;;;;7910:10;:40;:::i;:::-;7890:60;-1:-1:-1;7960:24:11;7987:15;8000:2;7890:60;7987:15;:::i;:::-;7960:42;;8029:17;8013:33;;:12;;:33;;;;;;;:::i;:::-;;;;-1:-1:-1;;8056:13:11;:34;;8073:17;;8056:13;;;:34;;8073:17;;8056:34;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;8110:8;;;;-1:-1:-1;8100:19:11;;;;;;;;;;:40;;;;;;-1:-1:-1;8100:19:11;:40;;;;;:::i;:::-;;;;-1:-1:-1;;8150:12:11;:22;;;;;;;;;;;;;;;8198:8;;;;;;;9991:17;10026:10;8183:130;;8239:8;;8223:79;;;;;8273:4;8223:79;;;7289:74:12;7411:26;7399:39;;7379:18;;;7372:67;7475:2;7455:18;;;7448:30;-1:-1:-1;7494:18:12;;;7487:29;8239:8:11;;;;;8223:41;;7533:19:12;;8223:79:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8183:130;8348:8;;8327:49;;23153:26:12;23141:39;;23123:58;;8348:8:11;;;;;;;8327:49;;23111:2:12;23096:18;8327:49:11;;;;;;;6530:1853;;;;;6493:1890::o;11710:560::-;11883:8;11864:15;:27;;11856:69;;;;;;;13044:2:12;11856:69:11;;;13026:21:12;13083:2;13063:18;;;13056:30;13122:31;13102:18;;;13095:59;13171:18;;11856:69:11;13016:179:12;11856:69:11;11935:18;11977:16;11995:5;12002:7;12011:5;12018:16;12028:5;12647:14;;12587:15;12647:14;;;:7;:14;;;;;864::2;;996:1;978:19;;;;;864:14;12527:203:11;12018:16;11966:79;;;;;;8224:25:12;;;;8268:42;8346:15;;;8326:18;;;8319:43;8398:15;;;;8378:18;;;8371:43;8430:18;;;8423:34;8473:19;;;8466:35;8517:19;;;8510:35;;;8196:19;;11966:79:11;;;;;;;;;;;;11956:90;;;;;;11935:111;;12056:12;12071:28;12088:10;12071:16;:28::i;:::-;12056:43;;12109:14;12126:28;12140:4;12146:1;12149;12152;12126:13;:28::i;:::-;12109:45;;12182:5;12172:15;;:6;:15;;;12164:58;;;;;;;17807:2:12;12164:58:11;;;17789:21:12;17846:2;17826:18;;;17819:30;17885:32;17865:18;;;17858:60;17935:18;;12164:58:11;17779:180:12;12164:58:11;12232:31;12241:5;12248:7;12257:5;12232:8;:31::i;:::-;11846:424;;;11710:560;;;;;;;:::o;10829:580::-;10930:19;;;10922:68;;;;;;;20407:2:12;10922:68:11;;;20389:21:12;20446:2;20426:18;;;20419:30;20485:34;20465:18;;;20458:62;20556:6;20536:18;;;20529:34;20580:19;;10922:68:11;20379:226:12;10922:68:11;11008:22;;;11025:4;11008:22;;11000:62;;;;;;;13809:2:12;11000:62:11;;;13791:21:12;13848:2;13828:18;;;13821:30;13887:29;13867:18;;;13860:57;13934:18;;11000:62:11;13781:177:12;11000:62:11;11080:21;;;11072:68;;;;;;;12641:2:12;11072:68:11;;;12623:21:12;12680:2;12660:18;;;12653:30;12719:34;12699:18;;;12692:62;12790:4;12770:18;;;12763:32;12812:19;;11072:68:11;12613:224:12;11072:68:11;11158:24;;;11177:4;11158:24;;11150:66;;;;;;;19282:2:12;11150:66:11;;;19264:21:12;19321:2;19301:18;;;19294:30;19360:31;19340:18;;;19333:59;19409:18;;11150:66:11;19254:179:12;11150:66:11;11234:5;;;;;;;11226:81;;;;;;;11857:2:12;11226:81:11;;;11839:21:12;11896:2;11876:18;;;11869:30;11935:34;11915:18;;;11908:62;12006:28;11986:18;;;11979:56;12052:19;;11226:81:11;11829:248:12;11226:81:11;11318:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;11370:32;;7901:25:12;;;11370:32:11;;7874:18:12;11370:32:11;7856:76:12;10049:774:11;10275:20;;;10267:70;;;;;;;19640:2:12;10267:70:11;;;19622:21:12;19679:2;19659:18;;;19652:30;19718:34;19698:18;;;19691:62;19789:7;19769:18;;;19762:35;19814:19;;10267:70:11;19612:227:12;10267:70:11;10355:23;;;10373:4;10355:23;;10347:64;;;;;;;12284:2:12;10347:64:11;;;12266:21:12;12323:2;12303:18;;;12296:30;12362;12342:18;;;12335:58;12410:18;;10347:64:11;12256:178:12;10347:64:11;10429:5;;;;;;;10421:81;;;;;;;11857:2:12;10421:81:11;;;11839:21:12;11896:2;11876:18;;;11869:30;11935:34;11915:18;;;11908:62;12006:28;11986:18;;;11979:56;12052:19;;10421:81:11;11829:248:12;10421:81:11;10537:17;;;10513:21;10537:17;;;;;;;;;;;10572:23;;;;10564:74;;;;;;;13402:2:12;10564:74:11;;;13384:21:12;13441:2;13421:18;;;13414:30;13480:34;13460:18;;;13453:62;13551:8;13531:18;;;13524:36;13577:19;;10564:74:11;13374:228:12;10564:74:11;10673:17;;;;:9;:17;;;;;;;;;;;10693:22;;;10673:42;;10735:20;;;;;;;;:30;;10709:6;;10673:9;10735:30;;10709:6;;10735:30;:::i;:::-;;;;;;;;10798:9;10781:35;;10790:6;10781:35;;;10809:6;10781:35;;;;7901:25:12;;7889:2;7874:18;;7856:76;10781:35:11;;;;;;;;10136:687;10049:774;;;:::o;2990:275:10:-;3043:7;3083:16;3066:13;:33;3062:197;;;-1:-1:-1;3122:24:10;;2990:275::o;3062:197::-;-1:-1:-1;3447:73:10;;;3206:10;3447:73;;;;8815:25:12;;;;3218:12:10;8856:18:12;;;8849:34;3232:15:10;8899:18:12;;;8892:34;3491:13:10;8942:18:12;;;8935:34;3514:4:10;8985:19:12;;;;8978:84;;;;3447:73:10;;;;;;;;;;8787:19:12;;;;3447:73:10;;;3437:84;;;;;;12408:113:11:o;4153:165:10:-;4230:7;4256:55;4278:20;:18;:20::i;:::-;4300:10;5774:57:3;;6432:66:12;5774:57:3;;;6420:79:12;6515:11;;;6508:27;;;6551:12;;;6544:28;;;5738:7:3;;6588:12:12;;5774:57:3;;;;;;;;;;;;5764:68;;;;;;5757:75;;5645:194;;;;;3265:1486;3388:7;4316:66;4302:80;;;4281:161;;;;;;;14577:2:12;4281:161:3;;;14559:21:12;14616:2;14596:18;;;14589:30;14655:34;14635:18;;;14628:62;14726:4;14706:18;;;14699:32;14748:19;;4281:161:3;14549:224:12;4281:161:3;4460:1;:7;;4465:2;4460:7;:18;;;;4471:1;:7;;4476:2;4471:7;4460:18;4452:65;;;;;;;16623:2:12;4452:65:3;;;16605:21:12;16662:2;16642:18;;;16635:30;16701:34;16681:18;;;16674:62;16772:4;16752:18;;;16745:32;16794:19;;4452:65:3;16595:224:12;4452:65:3;4629:24;;;4612:14;4629:24;;;;;;;;;9300:25:12;;;9373:4;9361:17;;9341:18;;;9334:45;;;;9395:18;;;9388:34;;;9438:18;;;9431:34;;;4629:24:3;;9272:19:12;;4629:24:3;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;4629:24:3;;;;;;-1:-1:-1;;4671:20:3;;;4663:57;;;;;;;10339:2:12;4663:57:3;;;10321:21:12;10378:2;10358:18;;;10351:30;10417:26;10397:18;;;10390:54;10461:18;;4663:57:3;10311:174:12;4663:57:3;4738:6;3265:1486;-1:-1:-1;;;;;3265:1486:3:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:196:12;82:20;;142:42;131:54;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:367::-;278:8;288:6;342:3;335:4;327:6;323:17;319:27;309:2;;360:1;357;350:12;309:2;-1:-1:-1;383:20:12;;426:18;415:30;;412:2;;;458:1;455;448:12;412:2;495:4;487:6;483:17;471:29;;555:3;548:4;538:6;535:1;531:14;523:6;519:27;515:38;512:47;509:2;;;572:1;569;562:12;509:2;299:283;;;;;:::o;587:347::-;638:8;648:6;702:3;695:4;687:6;683:17;679:27;669:2;;720:1;717;710:12;669:2;-1:-1:-1;743:20:12;;786:18;775:30;;772:2;;;818:1;815;808:12;772:2;855:4;847:6;843:17;831:29;;907:3;900:4;891:6;883;879:19;875:30;872:39;869:2;;;924:1;921;914:12;939:156;1005:20;;1065:4;1054:16;;1044:27;;1034:2;;1085:1;1082;1075:12;1100:186;1159:6;1212:2;1200:9;1191:7;1187:23;1183:32;1180:2;;;1228:1;1225;1218:12;1180:2;1251:29;1270:9;1251:29;:::i;:::-;1241:39;1170:116;-1:-1:-1;;;1170:116:12:o;1291:260::-;1359:6;1367;1420:2;1408:9;1399:7;1395:23;1391:32;1388:2;;;1436:1;1433;1426:12;1388:2;1459:29;1478:9;1459:29;:::i;:::-;1449:39;;1507:38;1541:2;1530:9;1526:18;1507:38;:::i;:::-;1497:48;;1378:173;;;;;:::o;1556:328::-;1633:6;1641;1649;1702:2;1690:9;1681:7;1677:23;1673:32;1670:2;;;1718:1;1715;1708:12;1670:2;1741:29;1760:9;1741:29;:::i;:::-;1731:39;;1789:38;1823:2;1812:9;1808:18;1789:38;:::i;:::-;1779:48;;1874:2;1863:9;1859:18;1846:32;1836:42;;1660:224;;;;;:::o;1889:626::-;1986:6;1994;2002;2010;2018;2071:3;2059:9;2050:7;2046:23;2042:33;2039:2;;;2088:1;2085;2078:12;2039:2;2111:29;2130:9;2111:29;:::i;:::-;2101:39;;2159:38;2193:2;2182:9;2178:18;2159:38;:::i;:::-;2149:48;;2244:2;2233:9;2229:18;2216:32;2206:42;;2299:2;2288:9;2284:18;2271:32;2326:18;2318:6;2315:30;2312:2;;;2358:1;2355;2348:12;2312:2;2397:58;2447:7;2438:6;2427:9;2423:22;2397:58;:::i;:::-;2029:486;;;;-1:-1:-1;2029:486:12;;-1:-1:-1;2474:8:12;;2371:84;2029:486;-1:-1:-1;;;2029:486:12:o;2520:606::-;2631:6;2639;2647;2655;2663;2671;2679;2732:3;2720:9;2711:7;2707:23;2703:33;2700:2;;;2749:1;2746;2739:12;2700:2;2772:29;2791:9;2772:29;:::i;:::-;2762:39;;2820:38;2854:2;2843:9;2839:18;2820:38;:::i;:::-;2810:48;;2905:2;2894:9;2890:18;2877:32;2867:42;;2956:2;2945:9;2941:18;2928:32;2918:42;;2979:37;3011:3;3000:9;2996:19;2979:37;:::i;:::-;2969:47;;3063:3;3052:9;3048:19;3035:33;3025:43;;3115:3;3104:9;3100:19;3087:33;3077:43;;2690:436;;;;;;;;;;:::o;3131:254::-;3199:6;3207;3260:2;3248:9;3239:7;3235:23;3231:32;3228:2;;;3276:1;3273;3266:12;3228:2;3299:29;3318:9;3299:29;:::i;:::-;3289:39;3375:2;3360:18;;;;3347:32;;-1:-1:-1;;;3218:167:12:o;3390:551::-;3478:6;3486;3494;3502;3555:2;3543:9;3534:7;3530:23;3526:32;3523:2;;;3571:1;3568;3561:12;3523:2;3594:29;3613:9;3594:29;:::i;:::-;3584:39;;3670:2;3659:9;3655:18;3642:32;3632:42;;3725:2;3714:9;3710:18;3697:32;3752:18;3744:6;3741:30;3738:2;;;3784:1;3781;3774:12;3738:2;3823:58;3873:7;3864:6;3853:9;3849:22;3823:58;:::i;:::-;3513:428;;;;-1:-1:-1;3900:8:12;-1:-1:-1;;;;3513:428:12:o;3946:772::-;4067:6;4075;4083;4091;4144:2;4132:9;4123:7;4119:23;4115:32;4112:2;;;4160:1;4157;4150:12;4112:2;4200:9;4187:23;4229:18;4270:2;4262:6;4259:14;4256:2;;;4286:1;4283;4276:12;4256:2;4325:70;4387:7;4378:6;4367:9;4363:22;4325:70;:::i;:::-;4414:8;;-1:-1:-1;4299:96:12;-1:-1:-1;4502:2:12;4487:18;;4474:32;;-1:-1:-1;4518:16:12;;;4515:2;;;4547:1;4544;4537:12;4515:2;;4586:72;4650:7;4639:8;4628:9;4624:24;4586:72;:::i;4723:435::-;4807:6;4815;4868:2;4856:9;4847:7;4843:23;4839:32;4836:2;;;4884:1;4881;4874:12;4836:2;4924:9;4911:23;4957:18;4949:6;4946:30;4943:2;;;4989:1;4986;4979:12;4943:2;5028:70;5090:7;5081:6;5070:9;5066:22;5028:70;:::i;:::-;5117:8;;5002:96;;-1:-1:-1;4826:332:12;-1:-1:-1;;;;4826:332:12:o;5163:180::-;5222:6;5275:2;5263:9;5254:7;5250:23;5246:32;5243:2;;;5291:1;5288;5281:12;5243:2;-1:-1:-1;5314:23:12;;5233:110;-1:-1:-1;5233:110:12:o;5348:182::-;5405:6;5458:2;5446:9;5437:7;5433:23;5429:32;5426:2;;;5474:1;5471;5464:12;5426:2;5497:27;5514:9;5497:27;:::i;5535:292::-;5593:6;5646:2;5634:9;5625:7;5621:23;5617:32;5614:2;;;5662:1;5659;5652:12;5614:2;5701:9;5688:23;5751:26;5744:5;5740:38;5733:5;5730:49;5720:2;;5793:1;5790;5783:12;5832:325;5920:6;5915:3;5908:19;5972:6;5965:5;5958:4;5953:3;5949:14;5936:43;;6024:1;6017:4;6008:6;6003:3;5999:16;5995:27;5988:38;5890:3;6146:4;6076:66;6071:2;6063:6;6059:15;6055:88;6050:3;6046:98;6042:109;6035:116;;5898:259;;;;:::o;6611:435::-;6836:42;6828:6;6824:55;6813:9;6806:74;6916:6;6911:2;6900:9;6896:18;6889:34;6959:2;6954;6943:9;6939:18;6932:30;6787:4;6979:61;7036:2;7025:9;7021:18;7013:6;7005;6979:61;:::i;:::-;6971:69;6796:250;-1:-1:-1;;;;;;6796:250:12:o;9476:656::-;9588:4;9617:2;9646;9635:9;9628:21;9678:6;9672:13;9721:6;9716:2;9705:9;9701:18;9694:34;9746:1;9756:140;9770:6;9767:1;9764:13;9756:140;;;9865:14;;;9861:23;;9855:30;9831:17;;;9850:2;9827:26;9820:66;9785:10;;9756:140;;;9914:6;9911:1;9908:13;9905:2;;;9984:1;9979:2;9970:6;9959:9;9955:22;9951:31;9944:42;9905:2;-1:-1:-1;10048:2:12;10036:15;10053:66;10032:88;10017:104;;;;10123:2;10013:113;;9597:535;-1:-1:-1;;;9597:535:12:o;22264:315::-;22449:6;22438:9;22431:25;22492:2;22487;22476:9;22472:18;22465:30;22412:4;22512:61;22569:2;22558:9;22554:18;22546:6;22538;22512:61;:::i;23192:128::-;23232:3;23263:1;23259:6;23256:1;23253:13;23250:2;;;23269:18;;:::i;:::-;-1:-1:-1;23305:9:12;;23240:80::o;23325:244::-;23364:3;23392:26;23445:2;23442:1;23438:10;23475:2;23472:1;23468:10;23506:3;23502:2;23498:12;23493:3;23490:21;23487:2;;;23514:18;;:::i;:::-;23550:13;;23372:197;-1:-1:-1;;;;23372:197:12:o;23574:120::-;23614:1;23640;23630:2;;23645:18;;:::i;:::-;-1:-1:-1;23679:9:12;;23620:74::o;23699:199::-;23738:1;23764:18;23809:2;23806:1;23802:10;23831:3;23821:2;;23838:18;;:::i;:::-;23876:10;;23872:20;;;;;23744:154;-1:-1:-1;;23744:154:12:o;23903:207::-;23942:1;23968:26;24021:2;24018:1;24014:10;24043:3;24033:2;;24050:18;;:::i;24115:125::-;24155:4;24183:1;24180;24177:8;24174:2;;;24188:18;;:::i;:::-;-1:-1:-1;24225:9:12;;24164:76::o;24245:229::-;24284:4;24313:18;24381:10;;;;24351;;24403:12;;;24400:2;;;24418:18;;:::i;:::-;24455:13;;24293:181;-1:-1:-1;;;24293:181:12:o;24479:237::-;24518:4;24547:26;24623:10;;;;24593;;24645:12;;;24642:2;;;24660:18;;:::i;24721:195::-;24760:3;24791:66;24784:5;24781:77;24778:2;;;24861:18;;:::i;:::-;-1:-1:-1;24908:1:12;24897:13;;24768:148::o;24921:184::-;24973:77;24970:1;24963:88;25070:4;25067:1;25060:15;25094:4;25091:1;25084:15;25110:184;25162:77;25159:1;25152:88;25259:4;25256:1;25249:15;25283:4;25280:1;25273:15;25299:184;25351:77;25348:1;25341:88;25448:4;25445:1;25438:15;25472:4;25469:1;25462:15

Swarm Source

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