Polygon Sponsored slots available. Book your slot here!
ERC-20
Governance
Overview
Max Total Supply
35,005,725,274,582.631880919480572436 TITAN
Holders
155,651 (0.00%)
Market
Price
$0.00 @ 0.000000 MATIC (-6.09%)
Onchain Market Cap
$633,603.63
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
240,009.204 TITANValue
$0.00 ( ~0 MATIC) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
Share
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2021-06-09 */ // Sources flattened with hardhat v2.2.1 https://hardhat.org // SPDX-License-Identifier: MIT // File @openzeppelin/contracts/token/ERC20/[email protected] 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 @openzeppelin/contracts-upgradeable/proxy/utils/[email protected] // solhint-disable-next-line compiler-version pragma solidity ^0.8.0; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { require(_initializing || !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File @openzeppelin/contracts/access/[email protected] pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File @openzeppelin/contracts/utils/math/[email protected] pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{value: value}(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File contracts/ERC20/ERC20Custom.sol pragma solidity 0.8.4; // Due to compiling issues, _name, _symbol, and _decimals were removed /** * @dev Implementation of the {IERC20} 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}. * For a generic mechanism see {ERC20Mintable}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20Custom is Context, IERC20 { using SafeMath for uint256; mapping(address => uint256) internal _balances; mapping(address => mapping(address => uint256)) internal _allowances; uint256 private _totalSupply; /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address.approve(address spender, uint256 amount) */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub( subtractedValue, "ERC20: decreased allowance below zero" ) ); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for `accounts`'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), decreasedAllowance); _burn(account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Destroys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See {_burn} and {_approve}. */ function _burnFrom(address account, uint256 amount) internal virtual { _burn(account, amount); _approve( account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance") ); } /** * @dev Hook that is called before any transfer of tokens. This includes * 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:using-hooks.adoc[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File contracts/interfaces/ITreasury.sol pragma solidity 0.8.4; interface ITreasury { function hasPool(address _address) external view returns (bool); function collateralReserve() external view returns (address); function globalCollateralBalance() external view returns (uint256); function globalCollateralValue() external view returns (uint256); function requestTransfer( address token, address receiver, uint256 amount ) external; function info() external view returns ( uint256, uint256, uint256, uint256, uint256, uint256, uint256, uint256 ); } // File contracts/Share.sol pragma solidity 0.8.4; pragma experimental ABIEncoderV2; contract Share is ERC20Custom, Ownable, Initializable { /* ========== STATE VARIABLES ========== */ // ERC20 - Token string public symbol; string public name; uint8 public constant decimals = 18; uint256 public constant genesis_supply = 50000 ether; // 50000 will be mited at genesis for liq pool seeding // CONTRACTS address public treasury; // DISTRIBUTION uint256 public constant COMMUNITY_REWARD_ALLOCATION = 1_000_000_0000 ether; // 1000M uint256 public constant TREASURY_FUND_ALLOCATION = 300_000_0000 ether; // 300M uint256 public constant TREASURY_FUND_VESTING_DURATION = 1095 days; // 36 months uint256 public startTime; // Start time of vesting duration uint256 public endTime; // End of vesting duration address public treasuryFund; uint256 public treasuryFundLastClaimed; uint256 public treasuryFundEmissionRate = TREASURY_FUND_ALLOCATION / TREASURY_FUND_VESTING_DURATION; address public communityRewardController; // Holding SHARE tokens to distribute into Liquiditiy Mining Pools uint256 public communityRewardClaimed; /* ========== MODIFIERS ========== */ modifier onlyPools() { require(ITreasury(treasury).hasPool(msg.sender), "!pools"); _; } modifier onlyTreasuryFund { require(msg.sender == treasuryFund, "Only treasury fund address can trigger"); _; } /* ========== CONSTRUCTOR ========== */ function initialize( string memory _name, string memory _symbol, address _treasury, address _treasuryFund, address _communityRewardController, uint256 _startTime ) external initializer onlyOwner { name = _name; symbol = _symbol; treasury = _treasury; treasuryFund = _treasuryFund; communityRewardController = _communityRewardController; startTime = _startTime; endTime = _startTime + TREASURY_FUND_VESTING_DURATION; treasuryFundLastClaimed = _startTime; _mint(msg.sender, genesis_supply); } function claimCommunityRewards(uint256 amount) external onlyOwner { require(amount > 0, "invalidAmount"); require(communityRewardController != address(0), "!rewardController"); uint256 _remainingRewards = COMMUNITY_REWARD_ALLOCATION - communityRewardClaimed; require(amount <= _remainingRewards, "exceedRewards"); communityRewardClaimed = communityRewardClaimed + amount; _mint(communityRewardController, amount); } /* ========== RESTRICTED FUNCTIONS ========== */ function setTreasuryAddress(address _treasury) external onlyOwner { require(_treasury != address(0), "Invalid address"); treasury = _treasury; emit TreasuryChanged(_treasury); } function setTreasuryFund(address _treasuryFund) external onlyTreasuryFund { require(_treasuryFund != address(0), "zero"); treasuryFund = _treasuryFund; } function setCommunityRewardController(address _communityRewardController) external onlyOwner { require(_communityRewardController != address(0), "zero"); communityRewardController = _communityRewardController; } // This function is what other Pools will call to mint new SHARE function poolMint(address m_address, uint256 m_amount) external onlyPools { super._mint(m_address, m_amount); emit ShareMinted(address(this), m_address, m_amount); } // This function is what other pools will call to burn SHARE function poolBurnFrom(address b_address, uint256 b_amount) external onlyPools { super._burnFrom(b_address, b_amount); emit ShareBurned(b_address, address(this), b_amount); } function unclaimedTreasuryFund() public view returns (uint256 _pending) { uint256 _now = block.timestamp; if (_now > endTime) _now = endTime; if (treasuryFundLastClaimed >= _now) return 0; _pending = (_now - treasuryFundLastClaimed) * treasuryFundEmissionRate; } function claimTreasuryFundRewards() external onlyTreasuryFund { uint256 _pending = unclaimedTreasuryFund(); if (_pending > 0 && treasuryFund != address(0)) { _mint(treasuryFund, _pending); treasuryFundLastClaimed = block.timestamp; } } /* ========== EVENTS ========== */ event TreasuryChanged(address indexed newTreasury); event ShareBurned(address indexed from, address indexed to, uint256 amount); event ShareMinted(address indexed from, address indexed to, uint256 amount); }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ShareBurned","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":"amount","type":"uint256"}],"name":"ShareMinted","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":"newTreasury","type":"address"}],"name":"TreasuryChanged","type":"event"},{"inputs":[],"name":"COMMUNITY_REWARD_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TREASURY_FUND_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TREASURY_FUND_VESTING_DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimCommunityRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimTreasuryFundRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"communityRewardClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"communityRewardController","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"endTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"genesis_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_treasury","type":"address"},{"internalType":"address","name":"_treasuryFund","type":"address"},{"internalType":"address","name":"_communityRewardController","type":"address"},{"internalType":"uint256","name":"_startTime","type":"uint256"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"b_address","type":"address"},{"internalType":"uint256","name":"b_amount","type":"uint256"}],"name":"poolBurnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"m_address","type":"address"},{"internalType":"uint256","name":"m_amount","type":"uint256"}],"name":"poolMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_communityRewardController","type":"address"}],"name":"setCommunityRewardController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasury","type":"address"}],"name":"setTreasuryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasuryFund","type":"address"}],"name":"setTreasuryFund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"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":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treasuryFund","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treasuryFundEmissionRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treasuryFundLastClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unclaimedTreasuryFund","outputs":[{"internalType":"uint256","name":"_pending","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405261001e6305a39a806b09b18ab5df7180b6b8000000610076565b600b5534801561002d57600080fd5b50600380546001600160a01b0319163390811790915560405181906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350610096565b60008261009157634e487b7160e01b81526012600452602481fd5b500490565b611a04806100a56000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c806370a0823111610130578063a9059cbb116100b8578063e8efb3d51161007c578063e8efb3d5146104a3578063edf3e29e146104ac578063f25f8cb3146104bf578063f2fde38b146104d2578063f746b718146104e557600080fd5b8063a9059cbb14610429578063d5b8cbc21461043c578063dd62ed3e14610444578063e0c4f12d1461047d578063e6bbbaee1461049057600080fd5b80638da5cb5b116100ff5780638da5cb5b146103e157806395d89b41146103f2578063a349e246146103fa578063a457c2d71461040d578063a790b5ca1461042057600080fd5b806370a0823114610394578063715018a6146103bd57806378e97925146103c557806379cc6790146103ce57600080fd5b8063313ce567116101b35780634744aa7f116101825780634744aa7f1461032757806351e238e31461033a5780635d218c7c1461034b57806361d027b3146103565780636605bfda1461038157600080fd5b8063313ce567146102de5780633197cbb6146102f8578063395093511461030157806342966c681461031457600080fd5b80630c407d56116101fa5780630c407d561461029557806313ca8115146102a857806317764782146102bb57806318160ddd146102c357806323b872dd146102cb57600080fd5b806305e1b1101461022c57806306fdde0314610248578063095ea7b31461025d5780630a0c165a14610280575b600080fd5b610235600a5481565b6040519081526020015b60405180910390f35b6102506104f8565b60405161023f9190611792565b61027061026b366004611696565b610586565b604051901515815260200161023f565b61029361028e366004611696565b61059c565b005b6102936102a3366004611696565b6106a0565b6102356b09b18ab5df7180b6b800000081565b610235610797565b600254610235565b6102706102d936600461165b565b6107dc565b6102e6601281565b60405160ff909116815260200161023f565b61023560085481565b61027061030f366004611696565b610856565b61029361032236600461177a565b61088c565b61029361033536600461177a565b610899565b610235690a968163f0a57b40000081565b6102356305a39a8081565b600654610369906001600160a01b031681565b6040516001600160a01b03909116815260200161023f565b61029361038f36600461160f565b6109d8565b6102356103a236600461160f565b6001600160a01b031660009081526020819052604090205490565b610293610a94565b61023560075481565b6102936103dc366004611696565b610b08565b6003546001600160a01b0316610369565b610250610b54565b600c54610369906001600160a01b031681565b61027061041b366004611696565b610b61565b610235600d5481565b610270610437366004611696565b610bb0565b610293610bbd565b610235610452366004611629565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600954610369906001600160a01b031681565b61029361049e36600461160f565b610c2f565b610235600b5481565b6102936104ba3660046116df565b610cba565b6102356b204fce5e3e2502611000000081565b6102936104e036600461160f565b610e44565b6102936104f336600461160f565b610f2f565b60058054610505906118ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610531906118ae565b801561057e5780601f106105535761010080835404028352916020019161057e565b820191906000526020600020905b81548152906001019060200180831161056157829003601f168201915b505050505081565b6000610593338484610fba565b50600192915050565b600654604051631246dbf560e01b81523360048201526001600160a01b0390911690631246dbf59060240160206040518083038186803b1580156105df57600080fd5b505afa1580156105f3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061061791906116bf565b6106515760405162461bcd60e51b815260206004820152600660248201526521706f6f6c7360d01b60448201526064015b60405180910390fd5b61065b82826110df565b60405181815230906001600160a01b038416907fdf05d6cb804e48c3130d5f7811e55947769ccdecf499faea489170f17df227cf906020015b60405180910390a35050565b600654604051631246dbf560e01b81523360048201526001600160a01b0390911690631246dbf59060240160206040518083038186803b1580156106e357600080fd5b505afa1580156106f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061071b91906116bf565b6107505760405162461bcd60e51b815260206004820152600660248201526521706f6f6c7360d01b6044820152606401610648565b61075a828261112a565b6040518181526001600160a01b0383169030907ff4d2b66b63836b39ffec28f88533e0f50c9136ab7d8d9b9976f93d3880e8020590602001610694565b60085460009042908111156107ab57506008545b80600a54106107bc57600091505090565b600b54600a546107cc9083611897565b6107d69190611878565b91505090565b60006107e9848484611201565b61084c84336108478560405180606001604052806028815260200161195e602891396001600160a01b038a16600090815260016020526040812090335b6001600160a01b031681526020810191909152604001600020549190611384565b610fba565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161059391859061084790866113b0565b61089633826113c3565b50565b6003546001600160a01b031633146108c35760405162461bcd60e51b8152600401610648906117e5565b600081116109035760405162461bcd60e51b815260206004820152600d60248201526c1a5b9d985b1a59105b5bdd5b9d609a1b6044820152606401610648565b600c546001600160a01b031661094f5760405162461bcd60e51b815260206004820152601160248201527010b932bbb0b93221b7b73a3937b63632b960791b6044820152606401610648565b6000600d546b204fce5e3e2502611000000061096b9190611897565b9050808211156109ad5760405162461bcd60e51b815260206004820152600d60248201526c6578636565645265776172647360981b6044820152606401610648565b81600d546109bb9190611860565b600d55600c546109d4906001600160a01b03168361112a565b5050565b6003546001600160a01b03163314610a025760405162461bcd60e51b8152600401610648906117e5565b6001600160a01b038116610a4a5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610648565b600680546001600160a01b0319166001600160a01b0383169081179091556040517fc714d22a2f08b695f81e7c707058db484aa5b4d6b4c9fd64beb10fe85832f60890600090a250565b6003546001600160a01b03163314610abe5760405162461bcd60e51b8152600401610648906117e5565b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b6000610b388260405180606001604052806024815260200161198660249139610b318633610452565b9190611384565b9050610b45833383610fba565b610b4f83836113c3565b505050565b60048054610505906118ae565b60006105933384610847856040518060600160405280602581526020016119aa602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611384565b6000610593338484611201565b6009546001600160a01b03163314610be75760405162461bcd60e51b81526004016106489061181a565b6000610bf1610797565b9050600081118015610c0d57506009546001600160a01b031615155b1561089657600954610c28906001600160a01b03168261112a565b42600a5550565b6003546001600160a01b03163314610c595760405162461bcd60e51b8152600401610648906117e5565b6001600160a01b038116610c985760405162461bcd60e51b8152600401610648906020808252600490820152637a65726f60e01b604082015260600190565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b600354600160a81b900460ff1680610cdc5750600354600160a01b900460ff16155b610d3f5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610648565b600354600160a81b900460ff16158015610d69576003805461ffff60a01b191661010160a01b1790555b6003546001600160a01b03163314610d935760405162461bcd60e51b8152600401610648906117e5565b8651610da69060059060208a01906114d3565b508551610dba9060049060208901906114d3565b50600680546001600160a01b038088166001600160a01b03199283161790925560098054878416908316179055600c8054928616929091169190911790556007829055610e0b6305a39a8083611860565b600855600a829055610e2733690a968163f0a57b40000061112a565b8015610e3b576003805460ff60a81b191690555b50505050505050565b6003546001600160a01b03163314610e6e5760405162461bcd60e51b8152600401610648906117e5565b6001600160a01b038116610ed35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610648565b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b6009546001600160a01b03163314610f595760405162461bcd60e51b81526004016106489061181a565b6001600160a01b038116610f985760405162461bcd60e51b8152600401610648906020808252600490820152637a65726f60e01b604082015260600190565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03831661101c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610648565b6001600160a01b03821661107d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610648565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6110e982826113c3565b6109d4823361084784604051806060016040528060248152602001611986602491396001600160a01b03881660009081526001602052604081209033610826565b6001600160a01b0382166111805760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610648565b60025461118d90826113b0565b6002556001600160a01b0382166000908152602081905260409020546111b390826113b0565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610694565b6001600160a01b0383166112655760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610648565b6001600160a01b0382166112c75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610648565b61130481604051806060016040528060268152602001611938602691396001600160a01b0386166000908152602081905260409020549190611384565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461133390826113b0565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016110d2565b600081848411156113a85760405162461bcd60e51b81526004016106489190611792565b505050900390565b60006113bc8284611860565b9392505050565b6001600160a01b0382166114235760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610648565b61146081604051806060016040528060228152602001611916602291396001600160a01b0385166000908152602081905260409020549190611384565b6001600160a01b03831660009081526020819052604090205560025461148690826114c7565b6002556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610694565b60006113bc8284611897565b8280546114df906118ae565b90600052602060002090601f0160209004810192826115015760008555611547565b82601f1061151a57805160ff1916838001178555611547565b82800160010185558215611547579182015b8281111561154757825182559160200191906001019061152c565b50611553929150611557565b5090565b5b808211156115535760008155600101611558565b80356001600160a01b038116811461158357600080fd5b919050565b600082601f830112611598578081fd5b813567ffffffffffffffff808211156115b3576115b36118ff565b604051601f8301601f19908116603f011681019082821181831017156115db576115db6118ff565b816040528381528660208588010111156115f3578485fd5b8360208701602083013792830160200193909352509392505050565b600060208284031215611620578081fd5b6113bc8261156c565b6000806040838503121561163b578081fd5b6116448361156c565b91506116526020840161156c565b90509250929050565b60008060006060848603121561166f578081fd5b6116788461156c565b92506116866020850161156c565b9150604084013590509250925092565b600080604083850312156116a8578182fd5b6116b18361156c565b946020939093013593505050565b6000602082840312156116d0578081fd5b815180151581146113bc578182fd5b60008060008060008060c087890312156116f7578182fd5b863567ffffffffffffffff8082111561170e578384fd5b61171a8a838b01611588565b9750602089013591508082111561172f578384fd5b5061173c89828a01611588565b95505061174b6040880161156c565b93506117596060880161156c565b92506117676080880161156c565b915060a087013590509295509295509295565b60006020828403121561178b578081fd5b5035919050565b6000602080835283518082850152825b818110156117be578581018301518582016040015282016117a2565b818111156117cf5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526026908201527f4f6e6c792074726561737572792066756e6420616464726573732063616e20746040820152653934b3b3b2b960d11b606082015260800190565b60008219821115611873576118736118e9565b500190565b6000816000190483118215151615611892576118926118e9565b500290565b6000828210156118a9576118a96118e9565b500390565b600181811c908216806118c257607f821691505b602082108114156118e357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206e9c8c2cc3313255f957563b8279705353d9d447d86aa547725038afa73e29db64736f6c63430008040033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102275760003560e01c806370a0823111610130578063a9059cbb116100b8578063e8efb3d51161007c578063e8efb3d5146104a3578063edf3e29e146104ac578063f25f8cb3146104bf578063f2fde38b146104d2578063f746b718146104e557600080fd5b8063a9059cbb14610429578063d5b8cbc21461043c578063dd62ed3e14610444578063e0c4f12d1461047d578063e6bbbaee1461049057600080fd5b80638da5cb5b116100ff5780638da5cb5b146103e157806395d89b41146103f2578063a349e246146103fa578063a457c2d71461040d578063a790b5ca1461042057600080fd5b806370a0823114610394578063715018a6146103bd57806378e97925146103c557806379cc6790146103ce57600080fd5b8063313ce567116101b35780634744aa7f116101825780634744aa7f1461032757806351e238e31461033a5780635d218c7c1461034b57806361d027b3146103565780636605bfda1461038157600080fd5b8063313ce567146102de5780633197cbb6146102f8578063395093511461030157806342966c681461031457600080fd5b80630c407d56116101fa5780630c407d561461029557806313ca8115146102a857806317764782146102bb57806318160ddd146102c357806323b872dd146102cb57600080fd5b806305e1b1101461022c57806306fdde0314610248578063095ea7b31461025d5780630a0c165a14610280575b600080fd5b610235600a5481565b6040519081526020015b60405180910390f35b6102506104f8565b60405161023f9190611792565b61027061026b366004611696565b610586565b604051901515815260200161023f565b61029361028e366004611696565b61059c565b005b6102936102a3366004611696565b6106a0565b6102356b09b18ab5df7180b6b800000081565b610235610797565b600254610235565b6102706102d936600461165b565b6107dc565b6102e6601281565b60405160ff909116815260200161023f565b61023560085481565b61027061030f366004611696565b610856565b61029361032236600461177a565b61088c565b61029361033536600461177a565b610899565b610235690a968163f0a57b40000081565b6102356305a39a8081565b600654610369906001600160a01b031681565b6040516001600160a01b03909116815260200161023f565b61029361038f36600461160f565b6109d8565b6102356103a236600461160f565b6001600160a01b031660009081526020819052604090205490565b610293610a94565b61023560075481565b6102936103dc366004611696565b610b08565b6003546001600160a01b0316610369565b610250610b54565b600c54610369906001600160a01b031681565b61027061041b366004611696565b610b61565b610235600d5481565b610270610437366004611696565b610bb0565b610293610bbd565b610235610452366004611629565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600954610369906001600160a01b031681565b61029361049e36600461160f565b610c2f565b610235600b5481565b6102936104ba3660046116df565b610cba565b6102356b204fce5e3e2502611000000081565b6102936104e036600461160f565b610e44565b6102936104f336600461160f565b610f2f565b60058054610505906118ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610531906118ae565b801561057e5780601f106105535761010080835404028352916020019161057e565b820191906000526020600020905b81548152906001019060200180831161056157829003601f168201915b505050505081565b6000610593338484610fba565b50600192915050565b600654604051631246dbf560e01b81523360048201526001600160a01b0390911690631246dbf59060240160206040518083038186803b1580156105df57600080fd5b505afa1580156105f3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061061791906116bf565b6106515760405162461bcd60e51b815260206004820152600660248201526521706f6f6c7360d01b60448201526064015b60405180910390fd5b61065b82826110df565b60405181815230906001600160a01b038416907fdf05d6cb804e48c3130d5f7811e55947769ccdecf499faea489170f17df227cf906020015b60405180910390a35050565b600654604051631246dbf560e01b81523360048201526001600160a01b0390911690631246dbf59060240160206040518083038186803b1580156106e357600080fd5b505afa1580156106f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061071b91906116bf565b6107505760405162461bcd60e51b815260206004820152600660248201526521706f6f6c7360d01b6044820152606401610648565b61075a828261112a565b6040518181526001600160a01b0383169030907ff4d2b66b63836b39ffec28f88533e0f50c9136ab7d8d9b9976f93d3880e8020590602001610694565b60085460009042908111156107ab57506008545b80600a54106107bc57600091505090565b600b54600a546107cc9083611897565b6107d69190611878565b91505090565b60006107e9848484611201565b61084c84336108478560405180606001604052806028815260200161195e602891396001600160a01b038a16600090815260016020526040812090335b6001600160a01b031681526020810191909152604001600020549190611384565b610fba565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161059391859061084790866113b0565b61089633826113c3565b50565b6003546001600160a01b031633146108c35760405162461bcd60e51b8152600401610648906117e5565b600081116109035760405162461bcd60e51b815260206004820152600d60248201526c1a5b9d985b1a59105b5bdd5b9d609a1b6044820152606401610648565b600c546001600160a01b031661094f5760405162461bcd60e51b815260206004820152601160248201527010b932bbb0b93221b7b73a3937b63632b960791b6044820152606401610648565b6000600d546b204fce5e3e2502611000000061096b9190611897565b9050808211156109ad5760405162461bcd60e51b815260206004820152600d60248201526c6578636565645265776172647360981b6044820152606401610648565b81600d546109bb9190611860565b600d55600c546109d4906001600160a01b03168361112a565b5050565b6003546001600160a01b03163314610a025760405162461bcd60e51b8152600401610648906117e5565b6001600160a01b038116610a4a5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610648565b600680546001600160a01b0319166001600160a01b0383169081179091556040517fc714d22a2f08b695f81e7c707058db484aa5b4d6b4c9fd64beb10fe85832f60890600090a250565b6003546001600160a01b03163314610abe5760405162461bcd60e51b8152600401610648906117e5565b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b6000610b388260405180606001604052806024815260200161198660249139610b318633610452565b9190611384565b9050610b45833383610fba565b610b4f83836113c3565b505050565b60048054610505906118ae565b60006105933384610847856040518060600160405280602581526020016119aa602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611384565b6000610593338484611201565b6009546001600160a01b03163314610be75760405162461bcd60e51b81526004016106489061181a565b6000610bf1610797565b9050600081118015610c0d57506009546001600160a01b031615155b1561089657600954610c28906001600160a01b03168261112a565b42600a5550565b6003546001600160a01b03163314610c595760405162461bcd60e51b8152600401610648906117e5565b6001600160a01b038116610c985760405162461bcd60e51b8152600401610648906020808252600490820152637a65726f60e01b604082015260600190565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b600354600160a81b900460ff1680610cdc5750600354600160a01b900460ff16155b610d3f5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610648565b600354600160a81b900460ff16158015610d69576003805461ffff60a01b191661010160a01b1790555b6003546001600160a01b03163314610d935760405162461bcd60e51b8152600401610648906117e5565b8651610da69060059060208a01906114d3565b508551610dba9060049060208901906114d3565b50600680546001600160a01b038088166001600160a01b03199283161790925560098054878416908316179055600c8054928616929091169190911790556007829055610e0b6305a39a8083611860565b600855600a829055610e2733690a968163f0a57b40000061112a565b8015610e3b576003805460ff60a81b191690555b50505050505050565b6003546001600160a01b03163314610e6e5760405162461bcd60e51b8152600401610648906117e5565b6001600160a01b038116610ed35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610648565b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b6009546001600160a01b03163314610f595760405162461bcd60e51b81526004016106489061181a565b6001600160a01b038116610f985760405162461bcd60e51b8152600401610648906020808252600490820152637a65726f60e01b604082015260600190565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03831661101c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610648565b6001600160a01b03821661107d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610648565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6110e982826113c3565b6109d4823361084784604051806060016040528060248152602001611986602491396001600160a01b03881660009081526001602052604081209033610826565b6001600160a01b0382166111805760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610648565b60025461118d90826113b0565b6002556001600160a01b0382166000908152602081905260409020546111b390826113b0565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610694565b6001600160a01b0383166112655760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610648565b6001600160a01b0382166112c75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610648565b61130481604051806060016040528060268152602001611938602691396001600160a01b0386166000908152602081905260409020549190611384565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461133390826113b0565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016110d2565b600081848411156113a85760405162461bcd60e51b81526004016106489190611792565b505050900390565b60006113bc8284611860565b9392505050565b6001600160a01b0382166114235760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610648565b61146081604051806060016040528060228152602001611916602291396001600160a01b0385166000908152602081905260409020549190611384565b6001600160a01b03831660009081526020819052604090205560025461148690826114c7565b6002556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610694565b60006113bc8284611897565b8280546114df906118ae565b90600052602060002090601f0160209004810192826115015760008555611547565b82601f1061151a57805160ff1916838001178555611547565b82800160010185558215611547579182015b8281111561154757825182559160200191906001019061152c565b50611553929150611557565b5090565b5b808211156115535760008155600101611558565b80356001600160a01b038116811461158357600080fd5b919050565b600082601f830112611598578081fd5b813567ffffffffffffffff808211156115b3576115b36118ff565b604051601f8301601f19908116603f011681019082821181831017156115db576115db6118ff565b816040528381528660208588010111156115f3578485fd5b8360208701602083013792830160200193909352509392505050565b600060208284031215611620578081fd5b6113bc8261156c565b6000806040838503121561163b578081fd5b6116448361156c565b91506116526020840161156c565b90509250929050565b60008060006060848603121561166f578081fd5b6116788461156c565b92506116866020850161156c565b9150604084013590509250925092565b600080604083850312156116a8578182fd5b6116b18361156c565b946020939093013593505050565b6000602082840312156116d0578081fd5b815180151581146113bc578182fd5b60008060008060008060c087890312156116f7578182fd5b863567ffffffffffffffff8082111561170e578384fd5b61171a8a838b01611588565b9750602089013591508082111561172f578384fd5b5061173c89828a01611588565b95505061174b6040880161156c565b93506117596060880161156c565b92506117676080880161156c565b915060a087013590509295509295509295565b60006020828403121561178b578081fd5b5035919050565b6000602080835283518082850152825b818110156117be578581018301518582016040015282016117a2565b818111156117cf5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526026908201527f4f6e6c792074726561737572792066756e6420616464726573732063616e20746040820152653934b3b3b2b960d11b606082015260800190565b60008219821115611873576118736118e9565b500190565b6000816000190483118215151615611892576118926118e9565b500290565b6000828210156118a9576118a96118e9565b500390565b600181811c908216806118c257607f821691505b602082108114156118e357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206e9c8c2cc3313255f957563b8279705353d9d447d86aa547725038afa73e29db64736f6c63430008040033
Deployed Bytecode Sourcemap
35159:4734:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35989:38;;;;;;;;;10556:25:1;;;10544:2;10529:18;35989:38:0;;;;;;;;35320:18;;;:::i;:::-;;;;;;;:::i;26358:169::-;;;;;;:::i;:::-;;:::i;:::-;;;3765:14:1;;3758:22;3740:41;;3728:2;3713:18;26358:169:0;3695:92:1;38817:196:0;;;;;;:::i;:::-;;:::i;:::-;;38555:188;;;;;;:::i;:::-;;:::i;35664:69::-;;35715:18;35664:69;;39021:303;;;:::i;25237:100::-;25317:12;;25237:100;;26999:454;;;;;;:::i;:::-;;:::i;35345:35::-;;35378:2;35345:35;;;;;10764:4:1;10752:17;;;10734:36;;10722:2;10707:18;35345:35:0;10689:87:1;35899:22:0;;;;;;27862:218;;;;;;:::i;:::-;;:::i;30821:91::-;;;;;;:::i;:::-;;:::i;37304:474::-;;;;;;:::i;:::-;;:::i;35387:52::-;;35428:11;35387:52;;35748:66;;35805:9;35748:66;;35521:23;;;;;-1:-1:-1;;;;;35521:23:0;;;;;;-1:-1:-1;;;;;3556:32:1;;;3538:51;;3526:2;3511:18;35521:23:0;3493:102:1;37842:209:0;;;;;;:::i;:::-;;:::i;25400:119::-;;;;;;:::i;:::-;-1:-1:-1;;;;;25493:18:0;25466:7;25493:18;;;;;;;;;;;;25400:119;7540:148;;;:::i;35834:24::-;;;;;;31229:308;;;;;;:::i;:::-;;:::i;6889:87::-;6962:6;;-1:-1:-1;;;;;6962:6:0;6889:87;;35293:20;;;:::i;36149:40::-;;;;;-1:-1:-1;;;;;36149:40:0;;;28583:400;;;;;;:::i;:::-;;:::i;36263:37::-;;;;;;25732:175;;;;;;:::i;:::-;;:::i;39332:293::-;;;:::i;25970:201::-;;;;;;:::i;:::-;-1:-1:-1;;;;;26136:18:0;;;26104:7;26136:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;25970:201;35955:27;;;;;-1:-1:-1;;;;;35955:27:0;;;38243:234;;;;;;:::i;:::-;;:::i;36034:108::-;;;;;;36661:635;;;;;;:::i;:::-;;:::i;35574:74::-;;35628:20;35574:74;;7843:244;;;;;;:::i;:::-;;:::i;38059:176::-;;;;;;:::i;:::-;;:::i;35320:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26358:169::-;26441:4;26458:39;5526:10;26481:7;26490:6;26458:8;:39::i;:::-;-1:-1:-1;26515:4:0;26358:169;;;;:::o;38817:196::-;36404:8;;36394:39;;-1:-1:-1;;;36394:39:0;;36422:10;36394:39;;;3538:51:1;-1:-1:-1;;;;;36404:8:0;;;;36394:27;;3511:18:1;;36394:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36386:58;;;;-1:-1:-1;;;36386:58:0;;9576:2:1;36386:58:0;;;9558:21:1;9615:1;9595:18;;;9588:29;-1:-1:-1;;;9633:18:1;;;9626:36;9679:18;;36386:58:0;;;;;;;;;38906:36:::1;38922:9;38933:8;38906:15;:36::i;:::-;38958:47;::::0;10556:25:1;;;38989:4:0::1;::::0;-1:-1:-1;;;;;38958:47:0;::::1;::::0;::::1;::::0;10544:2:1;10529:18;38958:47:0::1;;;;;;;;38817:196:::0;;:::o;38555:188::-;36404:8;;36394:39;;-1:-1:-1;;;36394:39:0;;36422:10;36394:39;;;3538:51:1;-1:-1:-1;;;;;36404:8:0;;;;36394:27;;3511:18:1;;36394:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36386:58;;;;-1:-1:-1;;;36386:58:0;;9576:2:1;36386:58:0;;;9558:21:1;9615:1;9595:18;;;9588:29;-1:-1:-1;;;9633:18:1;;;9626:36;9679:18;;36386:58:0;9548:155:1;36386:58:0;38640:32:::1;38652:9;38663:8;38640:11;:32::i;:::-;38688:47;::::0;10556:25:1;;;-1:-1:-1;;;;;38688:47:0;::::1;::::0;38708:4:::1;::::0;38688:47:::1;::::0;10544:2:1;10529:18;38688:47:0::1;10511:76:1::0;39021:303:0;39156:7;;39075:16;;39119:15;;39149:14;;39145:34;;;-1:-1:-1;39172:7:0;;39145:34;39221:4;39194:23;;:31;39190:45;;39234:1;39227:8;;;39021:303;:::o;39190:45::-;39292:24;;39265:23;;39258:30;;:4;:30;:::i;:::-;39257:59;;;;:::i;:::-;39246:70;;39021:303;;:::o;26999:454::-;27139:4;27156:36;27166:6;27174:9;27185:6;27156:9;:36::i;:::-;27203:220;27226:6;5526:10;27274:138;27330:6;27274:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27274:19:0;;;;;;:11;:19;;;;;;5526:10;27294:12;-1:-1:-1;;;;;27274:33:0;;;;;;;;;;;;-1:-1:-1;27274:33:0;;;:138;:37;:138::i;:::-;27203:8;:220::i;:::-;-1:-1:-1;27441:4:0;26999:454;;;;;:::o;27862:218::-;5526:10;27950:4;27999:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;27999:34:0;;;;;;;;;;27950:4;;27967:83;;27990:7;;27999:50;;28038:10;27999:38;:50::i;30821:91::-;30877:27;5526:10;30897:6;30877:5;:27::i;:::-;30821:91;:::o;37304:474::-;6962:6;;-1:-1:-1;;;;;6962:6:0;5526:10;7109:23;7101:68;;;;-1:-1:-1;;;7101:68:0;;;;;;;:::i;:::-;37398:1:::1;37389:6;:10;37381:36;;;::::0;-1:-1:-1;;;37381:36:0;;8423:2:1;37381:36:0::1;::::0;::::1;8405:21:1::0;8462:2;8442:18;;;8435:30;-1:-1:-1;;;8481:18:1;;;8474:43;8534:18;;37381:36:0::1;8395:163:1::0;37381:36:0::1;37436:25;::::0;-1:-1:-1;;;;;37436:25:0::1;37428:69;;;::::0;-1:-1:-1;;;37428:69:0;;6492:2:1;37428:69:0::1;::::0;::::1;6474:21:1::0;6531:2;6511:18;;;6504:30;-1:-1:-1;;;6550:18:1;;;6543:47;6607:18;;37428:69:0::1;6464:167:1::0;37428:69:0::1;37508:25;37566:22;;35628:20;37536:52;;;;:::i;:::-;37508:80;;37617:17;37607:6;:27;;37599:53;;;::::0;-1:-1:-1;;;37599:53:0;;9910:2:1;37599:53:0::1;::::0;::::1;9892:21:1::0;9949:2;9929:18;;;9922:30;-1:-1:-1;;;9968:18:1;;;9961:43;10021:18;;37599:53:0::1;9882:163:1::0;37599:53:0::1;37713:6;37688:22;;:31;;;;:::i;:::-;37663:22;:56:::0;37736:25:::1;::::0;37730:40:::1;::::0;-1:-1:-1;;;;;37736:25:0::1;37763:6:::0;37730:5:::1;:40::i;:::-;7180:1;37304:474:::0;:::o;37842:209::-;6962:6;;-1:-1:-1;;;;;6962:6:0;5526:10;7109:23;7101:68;;;;-1:-1:-1;;;7101:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37927:23:0;::::1;37919:51;;;::::0;-1:-1:-1;;;37919:51:0;;5006:2:1;37919:51:0::1;::::0;::::1;4988:21:1::0;5045:2;5025:18;;;5018:30;-1:-1:-1;;;5064:18:1;;;5057:45;5119:18;;37919:51:0::1;4978:165:1::0;37919:51:0::1;37981:8;:20:::0;;-1:-1:-1;;;;;;37981:20:0::1;-1:-1:-1::0;;;;;37981:20:0;::::1;::::0;;::::1;::::0;;;38017:26:::1;::::0;::::1;::::0;-1:-1:-1;;38017:26:0::1;37842:209:::0;:::o;7540:148::-;6962:6;;-1:-1:-1;;;;;6962:6:0;5526:10;7109:23;7101:68;;;;-1:-1:-1;;;7101:68:0;;;;;;;:::i;:::-;7631:6:::1;::::0;7610:40:::1;::::0;7647:1:::1;::::0;-1:-1:-1;;;;;7631:6:0::1;::::0;7610:40:::1;::::0;7647:1;;7610:40:::1;7661:6;:19:::0;;-1:-1:-1;;;;;;7661:19:0::1;::::0;;7540:148::o;31229:308::-;31306:26;31348:84;31385:6;31348:84;;;;;;;;;;;;;;;;;:32;31358:7;5526:10;25970:201;:::i;31348:32::-;:36;:84;:36;:84::i;:::-;31306:126;-1:-1:-1;31445:51:0;31454:7;5526:10;31477:18;31445:8;:51::i;:::-;31507:22;31513:7;31522:6;31507:5;:22::i;:::-;31229:308;;;:::o;35293:20::-;;;;;;;:::i;28583:400::-;28703:4;28725:228;5526:10;28775:7;28797:145;28854:15;28797:145;;;;;;;;;;;;;;;;;5526:10;28797:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;28797:34:0;;;;;;;;;;;;:38;:145::i;25732:175::-;25818:4;25835:42;5526:10;25859:9;25870:6;25835:9;:42::i;39332:293::-;36531:12;;-1:-1:-1;;;;;36531:12:0;36517:10;:26;36509:77;;;;-1:-1:-1;;;36509:77:0;;;;;;;:::i;:::-;39405:16:::1;39424:23;:21;:23::i;:::-;39405:42;;39473:1;39462:8;:12;:42;;;;-1:-1:-1::0;39478:12:0::1;::::0;-1:-1:-1;;;;;39478:12:0::1;:26:::0;::::1;39462:42;39458:160;;;39527:12;::::0;39521:29:::1;::::0;-1:-1:-1;;;;;39527:12:0::1;39541:8:::0;39521:5:::1;:29::i;:::-;39591:15;39565:23;:41:::0;36597:1:::1;39332:293::o:0;38243:234::-;6962:6;;-1:-1:-1;;;;;6962:6:0;5526:10;7109:23;7101:68;;;;-1:-1:-1;;;7101:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38355:40:0;::::1;38347:57;;;;-1:-1:-1::0;;;38347:57:0::1;;;;;;6160:2:1::0;6142:21;;;6199:1;6179:18;;;6172:29;-1:-1:-1;;;6232:2:1;6217:18;;6210:34;6276:2;6261:18;;6132:153;38347:57:0::1;38415:25;:54:::0;;-1:-1:-1;;;;;;38415:54:0::1;-1:-1:-1::0;;;;;38415:54:0;;;::::1;::::0;;;::::1;::::0;;38243:234::o;36661:635::-;4470:13;;-1:-1:-1;;;4470:13:0;;;;;:30;;-1:-1:-1;4488:12:0;;-1:-1:-1;;;4488:12:0;;;;4487:13;4470:30;4462:89;;;;-1:-1:-1;;;4462:89:0;;6838:2:1;4462:89:0;;;6820:21:1;6877:2;6857:18;;;6850:30;6916:34;6896:18;;;6889:62;-1:-1:-1;;;6967:18:1;;;6960:44;7021:19;;4462:89:0;6810:236:1;4462:89:0;4587:13;;-1:-1:-1;;;4587:13:0;;;;4586:14;4611:101;;;;4646:13;:20;;-1:-1:-1;;;;4681:19:0;-1:-1:-1;;;4681:19:0;;;4611:101;6962:6;;-1:-1:-1;;;;;6962:6:0;5526:10;7109:23:::1;7101:68;;;;-1:-1:-1::0;;;7101:68:0::1;;;;;;;:::i;:::-;36926:12:::0;;::::2;::::0;:4:::2;::::0;:12:::2;::::0;::::2;::::0;::::2;:::i;:::-;-1:-1:-1::0;36949:16:0;;::::2;::::0;:6:::2;::::0;:16:::2;::::0;::::2;::::0;::::2;:::i;:::-;-1:-1:-1::0;36976:8:0::2;:20:::0;;-1:-1:-1;;;;;36976:20:0;;::::2;-1:-1:-1::0;;;;;;36976:20:0;;::::2;;::::0;;;37007:12:::2;:28:::0;;;;::::2;::::0;;::::2;;::::0;;37046:25:::2;:54:::0;;;;::::2;::::0;;;::::2;::::0;;;::::2;::::0;;37111:9:::2;:22:::0;;;37154:43:::2;35805:9;37123:10:::0;37154:43:::2;:::i;:::-;37144:7;:53:::0;37208:23:::2;:36:::0;;;37255:33:::2;37261:10;35428:11;37255:5;:33::i;:::-;4742:14:::0;4738:68;;;4773:13;:21;;-1:-1:-1;;;;4773:21:0;;;4738:68;36661:635;;;;;;;:::o;7843:244::-;6962:6;;-1:-1:-1;;;;;6962:6:0;5526:10;7109:23;7101:68;;;;-1:-1:-1;;;7101:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7932:22:0;::::1;7924:73;;;::::0;-1:-1:-1;;;7924:73:0;;5350:2:1;7924:73:0::1;::::0;::::1;5332:21:1::0;5389:2;5369:18;;;5362:30;5428:34;5408:18;;;5401:62;-1:-1:-1;;;5479:18:1;;;5472:36;5525:19;;7924:73:0::1;5322:228:1::0;7924:73:0::1;8034:6;::::0;8013:38:::1;::::0;-1:-1:-1;;;;;8013:38:0;;::::1;::::0;8034:6:::1;::::0;8013:38:::1;::::0;8034:6:::1;::::0;8013:38:::1;8062:6;:17:::0;;-1:-1:-1;;;;;;8062:17:0::1;-1:-1:-1::0;;;;;8062:17:0;;;::::1;::::0;;;::::1;::::0;;7843:244::o;38059:176::-;36531:12;;-1:-1:-1;;;;;36531:12:0;36517:10;:26;36509:77;;;;-1:-1:-1;;;36509:77:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38152:27:0;::::1;38144:44;;;;-1:-1:-1::0;;;38144:44:0::1;;;;;;6160:2:1::0;6142:21;;;6199:1;6179:18;;;6172:29;-1:-1:-1;;;6232:2:1;6217:18;;6210:34;6276:2;6261:18;;6132:153;38144:44:0::1;38199:12;:28:::0;;-1:-1:-1;;;;;;38199:28:0::1;-1:-1:-1::0;;;;;38199:28:0;;;::::1;::::0;;;::::1;::::0;;38059:176::o;32727:380::-;-1:-1:-1;;;;;32863:19:0;;32855:68;;;;-1:-1:-1;;;32855:68:0;;9171:2:1;32855:68:0;;;9153:21:1;9210:2;9190:18;;;9183:30;9249:34;9229:18;;;9222:62;-1:-1:-1;;;9300:18:1;;;9293:34;9344:19;;32855:68:0;9143:226:1;32855:68:0;-1:-1:-1;;;;;32942:21:0;;32934:68;;;;-1:-1:-1;;;32934:68:0;;5757:2:1;32934:68:0;;;5739:21:1;5796:2;5776:18;;;5769:30;5835:34;5815:18;;;5808:62;-1:-1:-1;;;5886:18:1;;;5879:32;5928:19;;32934:68:0;5729:224:1;32934:68:0;-1:-1:-1;;;;;33015:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;33067:32;;10556:25:1;;;33067:32:0;;10529:18:1;33067:32:0;;;;;;;;32727:380;;;:::o;33293:290::-;33373:22;33379:7;33388:6;33373:5;:22::i;:::-;33406:169;33429:7;5526:10;33478:86;33517:6;33478:86;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33478:20:0;;;;;;:11;:20;;;;;;5526:10;33499:12;5446:98;30327:378;-1:-1:-1;;;;;30411:21:0;;30403:65;;;;-1:-1:-1;;;30403:65:0;;10252:2:1;30403:65:0;;;10234:21:1;10291:2;10271:18;;;10264:30;10330:33;10310:18;;;10303:61;10381:18;;30403:65:0;10224:181:1;30403:65:0;30558:12;;:24;;30575:6;30558:16;:24::i;:::-;30543:12;:39;-1:-1:-1;;;;;30614:18:0;;:9;:18;;;;;;;;;;;:30;;30637:6;30614:22;:30::i;:::-;-1:-1:-1;;;;;30593:18:0;;:9;:18;;;;;;;;;;;:51;;;;30660:37;;10556:25:1;;;30593:18:0;;:9;;30660:37;;10529:18:1;30660:37:0;10511:76:1;29473:573:0;-1:-1:-1;;;;;29613:20:0;;29605:70;;;;-1:-1:-1;;;29605:70:0;;8765:2:1;29605:70:0;;;8747:21:1;8804:2;8784:18;;;8777:30;8843:34;8823:18;;;8816:62;-1:-1:-1;;;8894:18:1;;;8887:35;8939:19;;29605:70:0;8737:227:1;29605:70:0;-1:-1:-1;;;;;29694:23:0;;29686:71;;;;-1:-1:-1;;;29686:71:0;;4602:2:1;29686:71:0;;;4584:21:1;4641:2;4621:18;;;4614:30;4680:34;4660:18;;;4653:62;-1:-1:-1;;;4731:18:1;;;4724:33;4774:19;;29686:71:0;4574:225:1;29686:71:0;29850;29872:6;29850:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29850:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;29830:17:0;;;:9;:17;;;;;;;;;;;:91;;;;29955:20;;;;;;;:32;;29980:6;29955:24;:32::i;:::-;-1:-1:-1;;;;;29932:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;30003:35;10556:25:1;;;29932:20:0;;30003:35;;;;;;10529:18:1;30003:35:0;10511:76:1;13167:240:0;13287:7;13348:12;13340:6;;;;13332:29;;;;-1:-1:-1;;;13332:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;13383:5:0;;;13167:240::o;10888:98::-;10946:7;10973:5;10977:1;10973;:5;:::i;:::-;10966:12;10888:98;-1:-1:-1;;;10888:98:0:o;31869:418::-;-1:-1:-1;;;;;31953:21:0;;31945:67;;;;-1:-1:-1;;;31945:67:0;;8021:2:1;31945:67:0;;;8003:21:1;8060:2;8040:18;;;8033:30;8099:34;8079:18;;;8072:62;-1:-1:-1;;;8150:18:1;;;8143:31;8191:19;;31945:67:0;7993:223:1;31945:67:0;32108:68;32131:6;32108:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32108:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;32087:18:0;;:9;:18;;;;;;;;;;:89;32202:12;;:24;;32219:6;32202:16;:24::i;:::-;32187:12;:39;32242:37;;10556:25:1;;;32268:1:0;;-1:-1:-1;;;;;32242:37:0;;;;;10544:2:1;10529:18;32242:37:0;10511:76:1;11269:98:0;11327:7;11354:5;11358:1;11354;:5;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:739::-;235:5;288:3;281:4;273:6;269:17;265:27;255:2;;310:5;303;296:20;255:2;350:6;337:20;376:18;413:2;409;406:10;403:2;;;419:18;;:::i;:::-;494:2;488:9;462:2;548:13;;-1:-1:-1;;544:22:1;;;568:2;540:31;536:40;524:53;;;592:18;;;612:22;;;589:46;586:2;;;638:18;;:::i;:::-;678:10;674:2;667:22;713:2;705:6;698:18;759:3;752:4;747:2;739:6;735:15;731:26;728:35;725:2;;;780:5;773;766:20;725:2;848;841:4;833:6;829:17;822:4;814:6;810:17;797:54;871:15;;;888:4;867:26;860:41;;;;-1:-1:-1;875:6:1;245:686;-1:-1:-1;;;245:686:1:o;936:196::-;995:6;1048:2;1036:9;1027:7;1023:23;1019:32;1016:2;;;1069:6;1061;1054:22;1016:2;1097:29;1116:9;1097:29;:::i;1137:270::-;1205:6;1213;1266:2;1254:9;1245:7;1241:23;1237:32;1234:2;;;1287:6;1279;1272:22;1234:2;1315:29;1334:9;1315:29;:::i;:::-;1305:39;;1363:38;1397:2;1386:9;1382:18;1363:38;:::i;:::-;1353:48;;1224:183;;;;;:::o;1412:338::-;1489:6;1497;1505;1558:2;1546:9;1537:7;1533:23;1529:32;1526:2;;;1579:6;1571;1564:22;1526:2;1607:29;1626:9;1607:29;:::i;:::-;1597:39;;1655:38;1689:2;1678:9;1674:18;1655:38;:::i;:::-;1645:48;;1740:2;1729:9;1725:18;1712:32;1702:42;;1516:234;;;;;:::o;1755:264::-;1823:6;1831;1884:2;1872:9;1863:7;1859:23;1855:32;1852:2;;;1905:6;1897;1890:22;1852:2;1933:29;1952:9;1933:29;:::i;:::-;1923:39;2009:2;1994:18;;;;1981:32;;-1:-1:-1;;;1842:177:1:o;2024:297::-;2091:6;2144:2;2132:9;2123:7;2119:23;2115:32;2112:2;;;2165:6;2157;2150:22;2112:2;2202:9;2196:16;2255:5;2248:13;2241:21;2234:5;2231:32;2221:2;;2282:6;2274;2267:22;2326:866;2450:6;2458;2466;2474;2482;2490;2543:3;2531:9;2522:7;2518:23;2514:33;2511:2;;;2565:6;2557;2550:22;2511:2;2610:9;2597:23;2639:18;2680:2;2672:6;2669:14;2666:2;;;2701:6;2693;2686:22;2666:2;2729:50;2771:7;2762:6;2751:9;2747:22;2729:50;:::i;:::-;2719:60;;2832:2;2821:9;2817:18;2804:32;2788:48;;2861:2;2851:8;2848:16;2845:2;;;2882:6;2874;2867:22;2845:2;;2910:52;2954:7;2943:8;2932:9;2928:24;2910:52;:::i;:::-;2900:62;;;2981:38;3015:2;3004:9;3000:18;2981:38;:::i;:::-;2971:48;;3038:38;3072:2;3061:9;3057:18;3038:38;:::i;:::-;3028:48;;3095:39;3129:3;3118:9;3114:19;3095:39;:::i;:::-;3085:49;;3181:3;3170:9;3166:19;3153:33;3143:43;;2501:691;;;;;;;;:::o;3197:190::-;3256:6;3309:2;3297:9;3288:7;3284:23;3280:32;3277:2;;;3330:6;3322;3315:22;3277:2;-1:-1:-1;3358:23:1;;3267:120;-1:-1:-1;3267:120:1:o;3792:603::-;3904:4;3933:2;3962;3951:9;3944:21;3994:6;3988:13;4037:6;4032:2;4021:9;4017:18;4010:34;4062:4;4075:140;4089:6;4086:1;4083:13;4075:140;;;4184:14;;;4180:23;;4174:30;4150:17;;;4169:2;4146:26;4139:66;4104:10;;4075:140;;;4233:6;4230:1;4227:13;4224:2;;;4303:4;4298:2;4289:6;4278:9;4274:22;4270:31;4263:45;4224:2;-1:-1:-1;4379:2:1;4358:15;-1:-1:-1;;4354:29:1;4339:45;;;;4386:2;4335:54;;3913:482;-1:-1:-1;;;3913:482:1:o;7051:356::-;7253:2;7235:21;;;7272:18;;;7265:30;7331:34;7326:2;7311:18;;7304:62;7398:2;7383:18;;7225:182::o;7412:402::-;7614:2;7596:21;;;7653:2;7633:18;;;7626:30;7692:34;7687:2;7672:18;;7665:62;-1:-1:-1;;;7758:2:1;7743:18;;7736:36;7804:3;7789:19;;7586:228::o;10781:128::-;10821:3;10852:1;10848:6;10845:1;10842:13;10839:2;;;10858:18;;:::i;:::-;-1:-1:-1;10894:9:1;;10829:80::o;10914:168::-;10954:7;11020:1;11016;11012:6;11008:14;11005:1;11002:21;10997:1;10990:9;10983:17;10979:45;10976:2;;;11027:18;;:::i;:::-;-1:-1:-1;11067:9:1;;10966:116::o;11087:125::-;11127:4;11155:1;11152;11149:8;11146:2;;;11160:18;;:::i;:::-;-1:-1:-1;11197:9:1;;11136:76::o;11217:380::-;11296:1;11292:12;;;;11339;;;11360:2;;11414:4;11406:6;11402:17;11392:27;;11360:2;11467;11459:6;11456:14;11436:18;11433:38;11430:2;;;11513:10;11508:3;11504:20;11501:1;11494:31;11548:4;11545:1;11538:15;11576:4;11573:1;11566:15;11430:2;;11272:325;;;:::o;11602:127::-;11663:10;11658:3;11654:20;11651:1;11644:31;11694:4;11691:1;11684:15;11718:4;11715:1;11708:15;11734:127;11795:10;11790:3;11786:20;11783:1;11776:31;11826:4;11823:1;11816:15;11850:4;11847:1;11840:15
Swarm Source
ipfs://6e9c8c2cc3313255f957563b8279705353d9d447d86aa547725038afa73e29db
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.