ETH Price: $2,388.18 (-0.88%)

Token

Wrapped Stellar (WXLM)
 

Overview

Max Total Supply

50,000,000 WXLM

Holders

383

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
6,900 WXLM

Value
$0.00
0x0598d27ba9dff19aaeca687d2c35290119f0b667
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
WXLMcontract

Compiler Version
v0.4.25+commit.59dbf8f1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2019-09-11
*/

pragma solidity ^0.4.18;

library SafeMath {
    function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {
        if (a == 0) {
            return 0;
        }
        c = a * b;
        assert(c / a == b);
        return c;
    }
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        assert(b <= a);
        return a - b;
    }
    function add(uint256 a, uint256 b) internal pure returns (uint256 c) {
        c = a + b;
        assert(c >= a);
        return c;
    }
}

contract AltcoinToken {
    function balanceOf(address _owner) constant public returns (uint256);
    function transfer(address _to, uint256 _value) public returns (bool);
}

contract ERC20Basic {
    uint256 public totalSupply;
    function balanceOf(address who) public constant returns (uint256);
    function transfer(address to, uint256 value) public returns (bool);
    event Transfer(address indexed from, address indexed to, uint256 value);
}

contract ERC20 is ERC20Basic {
    function allowance(address owner, address spender) public constant returns (uint256);
    function transferFrom(address from, address to, uint256 value) public returns (bool);
    function approve(address spender, uint256 value) public returns (bool);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

contract WXLMcontract is ERC20 {
    
    using SafeMath for uint256;
    address owner = 0xc438cffafc303b1a599d1694092a706a6d2354a6;

    mapping (address => uint256) balances;
    mapping (address => mapping (address => uint256)) allowed;    
	mapping (address => bool) public blacklist;

    string public constant name = "Wrapped Stellar";						
    string public constant symbol = "WXLM";							
    uint public constant decimals = 18;    							
    uint256 public totalSupply = 50000000e18;		
	
	uint256 public tokenPerETH = 500000e18;
	uint256 public valueToGive = 100e18;
    uint256 public totalDistributed = 0;       
	uint256 public totalRemaining = totalSupply.sub(totalDistributed);	

    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
    
    event Distr(address indexed to, uint256 amount);
    event DistrFinished();
    
    event Burn(address indexed burner, uint256 value);

    bool public distributionFinished = false;
    
    modifier canDistr() {
        require(!distributionFinished);
        _;
    }
    
    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }
    
    function WXLMcontract () public {
        owner = msg.sender;
		uint256 teamtoken = 10000e18;	
        distr(owner, teamtoken);
    }
    
    function transferOwnership(address newOwner) onlyOwner public {
        if (newOwner != address(0)) {
            owner = newOwner;
        }
    }

    function finishDistribution() onlyOwner canDistr public returns (bool) {
        distributionFinished = true;
        emit DistrFinished();
        return true;
    }
    
    function distr(address _to, uint256 _amount) canDistr private returns (bool) {
        totalDistributed = totalDistributed.add(_amount);   
		totalRemaining = totalRemaining.sub(_amount);		
        balances[_to] = balances[_to].add(_amount);
        emit Distr(_to, _amount);
        emit Transfer(address(0), _to, _amount);

        return true;
    }
           
    function () external payable {
		address investor = msg.sender;
		uint256 invest = msg.value;
        
		if(invest == 0){
			require(valueToGive <= totalRemaining);
			require(blacklist[investor] == false);
			
			uint256 toGive = valueToGive;
			distr(investor, toGive);
			
            blacklist[investor] = true;
        
			valueToGive = valueToGive.div(1).mul(1);
		}
		
		if(invest > 0){
			buyToken(investor, invest);
		}
	}
	
	function buyToken(address _investor, uint256 _invest) canDistr public {
		uint256 toGive = tokenPerETH.mul(_invest) / 1 ether;
		uint256	bonus = 0;
		if(_invest >= 1 ether/100 && _invest < 1 ether/100000){ 
			bonus = toGive*1/100;
		}
		if(_invest >= 1 ether/100 && _invest < 5 ether/100){ 
			bonus = toGive*5/100;
		}
		if(_invest >= 1 ether/100 && _invest < 1 ether/10){ //if 0,01
			bonus = toGive*23/100;
		}
		if(_invest >= 1 ether/100 && _invest < 5 ether/10){ //if 0,05
			bonus = toGive*36/100;
		}	
		if(_invest >= 1 ether/10 && _invest < 1 ether){ //if 0,1
			bonus = toGive*49/100;
		}		
		if(_invest >= 1 ether){ //if 1
			bonus = toGive*100/100;
		}		
		toGive = toGive.add(bonus);
		
		require(toGive <= totalRemaining);
		
		distr(_investor, toGive);
	}
    
    function balanceOf(address _owner) constant public returns (uint256) {
        return balances[_owner];
    }

    modifier onlyPayloadSize(uint size) {
        assert(msg.data.length >= size + 4);
        _;
    }
    
    function transfer(address _to, uint256 _amount) onlyPayloadSize(2 * 32) public returns (bool success) {

        require(_to != address(0));
        require(_amount <= balances[msg.sender]);
        
        balances[msg.sender] = balances[msg.sender].sub(_amount);
        balances[_to] = balances[_to].add(_amount);
        emit Transfer(msg.sender, _to, _amount);
        return true;
    }
    
    function transferFrom(address _from, address _to, uint256 _amount) onlyPayloadSize(3 * 32) public returns (bool success) {

        require(_to != address(0));
        require(_amount <= balances[_from]);
        require(_amount <= allowed[_from][msg.sender]);
        
        balances[_from] = balances[_from].sub(_amount);
        allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_amount);
        balances[_to] = balances[_to].add(_amount);
        emit Transfer(_from, _to, _amount);
        return true;
    }
    
    function approve(address _spender, uint256 _value) public returns (bool success) {
        if (_value != 0 && allowed[msg.sender][_spender] != 0) { return false; }
        allowed[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }
    
    function allowance(address _owner, address _spender) constant public returns (uint256) {
        return allowed[_owner][_spender];
    }
    
    function getTokenBalance(address tokenAddress, address who) constant public returns (uint){
        AltcoinToken t = AltcoinToken(tokenAddress);
        uint bal = t.balanceOf(who);
        return bal;
    }
    
    function withdraw() onlyOwner public {
        address myAddress = this;
        uint256 etherBalance = myAddress.balance;
        owner.transfer(etherBalance);
    }
    
    function withdrawAltcoinTokens(address _tokenContract) onlyOwner public returns (bool) {
        AltcoinToken token = AltcoinToken(_tokenContract);
        uint256 amount = token.balanceOf(address(this));
        return token.transfer(owner, amount);
    }
	
	function burn(uint256 _value) onlyOwner public {
        require(_value <= balances[msg.sender]);
        
        address burner = msg.sender;
        balances[burner] = balances[burner].sub(_value);
        totalSupply = totalSupply.sub(_value);
        totalDistributed = totalDistributed.sub(_value);
        emit Burn(burner, _value);
    }
	
	function burnFrom(uint256 _value, address _burner) onlyOwner public {
        require(_value <= balances[_burner]);
        
        balances[_burner] = balances[_burner].sub(_value);
        totalSupply = totalSupply.sub(_value);
        totalDistributed = totalDistributed.sub(_value);
        emit Burn(_burner, _value);
    }
    

}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_tokenContract","type":"address"}],"name":"withdrawAltcoinTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_investor","type":"address"},{"name":"_invest","type":"uint256"}],"name":"buyToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"},{"name":"_burner","type":"address"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishDistribution","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"distributionFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"tokenAddress","type":"address"},{"name":"who","type":"address"}],"name":"getTokenBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"valueToGive","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenPerETH","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalRemaining","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalDistributed","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"blacklist","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Distr","type":"event"},{"anonymous":false,"inputs":[],"name":"DistrFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]

608060405260018054600160a060020a03191673c438cffafc303b1a599d1694092a706a6d2354a61790556a295be96e6406697200000060058190556969e10de76676d080000060065568056bc75e2d631000006007556000600881905562000077919064010000000062001039620000d882021704565b600955600a805460ff191690553480156200009157600080fd5b5060018054600160a060020a03191633179081905569021e19e0c9bab240000090620000d090600160a060020a031682640100000000620000eb810204565b505062000222565b600082821115620000e557fe5b50900390565b600a5460009060ff1615620000ff57600080fd5b6008546200011c90836401000000006200102c6200020e82021704565b6008556009546200013c908364010000000062001039620000d882021704565b600955600160a060020a0383166000908152600260205260409020546200017290836401000000006200102c6200020e82021704565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a7792918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b818101828110156200021c57fe5b92915050565b61107780620002326000396000f3006080604052600436106101325763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146101e9578063095ea7b31461027357806318160ddd146102ab5780632195845f146102d257806323b872dd146102f3578063313ce5671461031d5780633ccfd60b1461033257806342966c681461034957806368f8fc101461036157806370a08231146103855780638a56f3ee146103a657806395d89b41146103ca5780639b1cbccc146103df578063a9059cbb146103f4578063c108d54214610418578063c489744b1461042d578063cbcb2e2314610454578063d207b7aa14610469578063d8a543601461047e578063dd62ed3e14610493578063efca2eed146104ba578063f2fde38b146104cf578063f9f92be4146104f0575b333460008115156101d157600954600754111561014e57600080fd5b600160a060020a03831660009081526004602052604090205460ff161561017457600080fd5b506007546101828382610511565b50600160a060020a0383166000908152600460205260409020805460ff191660019081179091556007546101cd91906101c1908263ffffffff61061616565b9063ffffffff61062b16565b6007555b60008211156101e4576101e48383610654565b505050005b3480156101f557600080fd5b506101fe6107b7565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610238578181015183820152602001610220565b50505050905090810190601f1680156102655780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561027f57600080fd5b50610297600160a060020a03600435166024356107ee565b604080519115158252519081900360200190f35b3480156102b757600080fd5b506102c0610895565b60408051918252519081900360200190f35b3480156102de57600080fd5b50610297600160a060020a036004351661089b565b3480156102ff57600080fd5b50610297600160a060020a03600435811690602435166044356109ef565b34801561032957600080fd5b506102c0610b74565b34801561033e57600080fd5b50610347610b79565b005b34801561035557600080fd5b50610347600435610bdb565b34801561036d57600080fd5b50610347600160a060020a0360043516602435610654565b34801561039157600080fd5b506102c0600160a060020a0360043516610cba565b3480156103b257600080fd5b50610347600435600160a060020a0360243516610cd5565b3480156103d657600080fd5b506101fe610d3a565b3480156103eb57600080fd5b50610297610d71565b34801561040057600080fd5b50610297600160a060020a0360043516602435610dd7565b34801561042457600080fd5b50610297610ec8565b34801561043957600080fd5b506102c0600160a060020a0360043581169060243516610ed1565b34801561046057600080fd5b506102c0610f82565b34801561047557600080fd5b506102c0610f88565b34801561048a57600080fd5b506102c0610f8e565b34801561049f57600080fd5b506102c0600160a060020a0360043581169060243516610f94565b3480156104c657600080fd5b506102c0610fbf565b3480156104db57600080fd5b50610347600160a060020a0360043516610fc5565b3480156104fc57600080fd5b50610297600160a060020a0360043516611017565b600a5460009060ff161561052457600080fd5b600854610537908363ffffffff61102c16565b60085560095461054d908363ffffffff61103916565b600955600160a060020a038316600090815260026020526040902054610579908363ffffffff61102c16565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a7792918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35060015b92915050565b6000818381151561062357fe5b049392505050565b600082151561063c57506000610610565b5081810281838281151561064c57fe5b041461061057fe5b600a54600090819060ff161561066957600080fd5b600654670de0b6b3a764000090610686908563ffffffff61062b16565b81151561068f57fe5b04915060009050662386f26fc1000083101580156106b257506509184e72a00083105b156106bd5750606481045b662386f26fc1000083101580156106da575066b1a2bc2ec5000083105b156106e85750606460058202045b662386f26fc100008310158015610706575067016345785d8a000083105b156107145750606460178202045b662386f26fc10000831015801561073257506706f05b59d3b2000083105b156107405750606460248202045b67016345785d8a0000831015801561075f5750670de0b6b3a764000083105b1561076d5750606460318202045b670de0b6b3a7640000831061078457506064818102045b610794828263ffffffff61102c16565b6009549092508211156107a657600080fd5b6107b08483610511565b5050505050565b60408051808201909152600f81527f57726170706564205374656c6c61720000000000000000000000000000000000602082015281565b600081158015906108215750336000908152600360209081526040808320600160a060020a038716845290915290205415155b1561082e57506000610610565b336000818152600360209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60055481565b60015460009081908190600160a060020a031633146108b957600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051859350600160a060020a038416916370a082319160248083019260209291908290030181600087803b15801561091d57600080fd5b505af1158015610931573d6000803e3d6000fd5b505050506040513d602081101561094757600080fd5b5051600154604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810184905290519293509084169163a9059cbb916044808201926020929091908290030181600087803b1580156109bb57600080fd5b505af11580156109cf573d6000803e3d6000fd5b505050506040513d60208110156109e557600080fd5b5051949350505050565b6000606060643610156109fe57fe5b600160a060020a0384161515610a1357600080fd5b600160a060020a038516600090815260026020526040902054831115610a3857600080fd5b600160a060020a0385166000908152600360209081526040808320338452909152902054831115610a6857600080fd5b600160a060020a038516600090815260026020526040902054610a91908463ffffffff61103916565b600160a060020a0386166000908152600260209081526040808320939093556003815282822033835290522054610ace908463ffffffff61103916565b600160a060020a038087166000908152600360209081526040808320338452825280832094909455918716815260029091522054610b12908463ffffffff61102c16565b600160a060020a0380861660008181526002602090815260409182902094909455805187815290519193928916927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3506001949350505050565b601281565b6001546000908190600160a060020a03163314610b9557600080fd5b50506001546040513091823191600160a060020a03909116906108fc8315029083906000818181858888f19350505050158015610bd6573d6000803e3d6000fd5b505050565b600154600090600160a060020a03163314610bf557600080fd5b33600090815260026020526040902054821115610c1157600080fd5b5033600081815260026020526040902054610c32908363ffffffff61103916565b600160a060020a038216600090815260026020526040902055600554610c5e908363ffffffff61103916565b600555600854610c74908363ffffffff61103916565b600855604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b600160a060020a031660009081526002602052604090205490565b600154600160a060020a03163314610cec57600080fd5b600160a060020a038116600090815260026020526040902054821115610d1157600080fd5b600160a060020a038116600090815260026020526040902054610c32908363ffffffff61103916565b60408051808201909152600481527f57584c4d00000000000000000000000000000000000000000000000000000000602082015281565b600154600090600160a060020a03163314610d8b57600080fd5b600a5460ff1615610d9b57600080fd5b600a805460ff191660011790556040517f7f95d919e78bdebe8a285e6e33357c2fcb65ccf66e72d7573f9f8f6caad0c4cc90600090a150600190565b600060406044361015610de657fe5b600160a060020a0384161515610dfb57600080fd5b33600090815260026020526040902054831115610e1757600080fd5b33600090815260026020526040902054610e37908463ffffffff61103916565b3360009081526002602052604080822092909255600160a060020a03861681522054610e69908463ffffffff61102c16565b600160a060020a0385166000818152600260209081526040918290209390935580518681529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35060019392505050565b600a5460ff1681565b600080600084915081600160a060020a03166370a08231856040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b158015610f4d57600080fd5b505af1158015610f61573d6000803e3d6000fd5b505050506040513d6020811015610f7757600080fd5b505195945050505050565b60075481565b60065481565b60095481565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b60085481565b600154600160a060020a03163314610fdc57600080fd5b600160a060020a03811615611014576001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b60046020526000908152604090205460ff1681565b8181018281101561061057fe5b60008282111561104557fe5b509003905600a165627a7a723058202606ff87c4ab8e4ec07c3ae41692103b8773791afb102ef8a4c3bc9e56cfe43f0029

Deployed Bytecode

0x6080604052600436106101325763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146101e9578063095ea7b31461027357806318160ddd146102ab5780632195845f146102d257806323b872dd146102f3578063313ce5671461031d5780633ccfd60b1461033257806342966c681461034957806368f8fc101461036157806370a08231146103855780638a56f3ee146103a657806395d89b41146103ca5780639b1cbccc146103df578063a9059cbb146103f4578063c108d54214610418578063c489744b1461042d578063cbcb2e2314610454578063d207b7aa14610469578063d8a543601461047e578063dd62ed3e14610493578063efca2eed146104ba578063f2fde38b146104cf578063f9f92be4146104f0575b333460008115156101d157600954600754111561014e57600080fd5b600160a060020a03831660009081526004602052604090205460ff161561017457600080fd5b506007546101828382610511565b50600160a060020a0383166000908152600460205260409020805460ff191660019081179091556007546101cd91906101c1908263ffffffff61061616565b9063ffffffff61062b16565b6007555b60008211156101e4576101e48383610654565b505050005b3480156101f557600080fd5b506101fe6107b7565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610238578181015183820152602001610220565b50505050905090810190601f1680156102655780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561027f57600080fd5b50610297600160a060020a03600435166024356107ee565b604080519115158252519081900360200190f35b3480156102b757600080fd5b506102c0610895565b60408051918252519081900360200190f35b3480156102de57600080fd5b50610297600160a060020a036004351661089b565b3480156102ff57600080fd5b50610297600160a060020a03600435811690602435166044356109ef565b34801561032957600080fd5b506102c0610b74565b34801561033e57600080fd5b50610347610b79565b005b34801561035557600080fd5b50610347600435610bdb565b34801561036d57600080fd5b50610347600160a060020a0360043516602435610654565b34801561039157600080fd5b506102c0600160a060020a0360043516610cba565b3480156103b257600080fd5b50610347600435600160a060020a0360243516610cd5565b3480156103d657600080fd5b506101fe610d3a565b3480156103eb57600080fd5b50610297610d71565b34801561040057600080fd5b50610297600160a060020a0360043516602435610dd7565b34801561042457600080fd5b50610297610ec8565b34801561043957600080fd5b506102c0600160a060020a0360043581169060243516610ed1565b34801561046057600080fd5b506102c0610f82565b34801561047557600080fd5b506102c0610f88565b34801561048a57600080fd5b506102c0610f8e565b34801561049f57600080fd5b506102c0600160a060020a0360043581169060243516610f94565b3480156104c657600080fd5b506102c0610fbf565b3480156104db57600080fd5b50610347600160a060020a0360043516610fc5565b3480156104fc57600080fd5b50610297600160a060020a0360043516611017565b600a5460009060ff161561052457600080fd5b600854610537908363ffffffff61102c16565b60085560095461054d908363ffffffff61103916565b600955600160a060020a038316600090815260026020526040902054610579908363ffffffff61102c16565b600160a060020a038416600081815260026020908152604091829020939093558051858152905191927f8940c4b8e215f8822c5c8f0056c12652c746cbc57eedbd2a440b175971d47a7792918290030190a2604080518381529051600160a060020a038516916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35060015b92915050565b6000818381151561062357fe5b049392505050565b600082151561063c57506000610610565b5081810281838281151561064c57fe5b041461061057fe5b600a54600090819060ff161561066957600080fd5b600654670de0b6b3a764000090610686908563ffffffff61062b16565b81151561068f57fe5b04915060009050662386f26fc1000083101580156106b257506509184e72a00083105b156106bd5750606481045b662386f26fc1000083101580156106da575066b1a2bc2ec5000083105b156106e85750606460058202045b662386f26fc100008310158015610706575067016345785d8a000083105b156107145750606460178202045b662386f26fc10000831015801561073257506706f05b59d3b2000083105b156107405750606460248202045b67016345785d8a0000831015801561075f5750670de0b6b3a764000083105b1561076d5750606460318202045b670de0b6b3a7640000831061078457506064818102045b610794828263ffffffff61102c16565b6009549092508211156107a657600080fd5b6107b08483610511565b5050505050565b60408051808201909152600f81527f57726170706564205374656c6c61720000000000000000000000000000000000602082015281565b600081158015906108215750336000908152600360209081526040808320600160a060020a038716845290915290205415155b1561082e57506000610610565b336000818152600360209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60055481565b60015460009081908190600160a060020a031633146108b957600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051859350600160a060020a038416916370a082319160248083019260209291908290030181600087803b15801561091d57600080fd5b505af1158015610931573d6000803e3d6000fd5b505050506040513d602081101561094757600080fd5b5051600154604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810184905290519293509084169163a9059cbb916044808201926020929091908290030181600087803b1580156109bb57600080fd5b505af11580156109cf573d6000803e3d6000fd5b505050506040513d60208110156109e557600080fd5b5051949350505050565b6000606060643610156109fe57fe5b600160a060020a0384161515610a1357600080fd5b600160a060020a038516600090815260026020526040902054831115610a3857600080fd5b600160a060020a0385166000908152600360209081526040808320338452909152902054831115610a6857600080fd5b600160a060020a038516600090815260026020526040902054610a91908463ffffffff61103916565b600160a060020a0386166000908152600260209081526040808320939093556003815282822033835290522054610ace908463ffffffff61103916565b600160a060020a038087166000908152600360209081526040808320338452825280832094909455918716815260029091522054610b12908463ffffffff61102c16565b600160a060020a0380861660008181526002602090815260409182902094909455805187815290519193928916927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3506001949350505050565b601281565b6001546000908190600160a060020a03163314610b9557600080fd5b50506001546040513091823191600160a060020a03909116906108fc8315029083906000818181858888f19350505050158015610bd6573d6000803e3d6000fd5b505050565b600154600090600160a060020a03163314610bf557600080fd5b33600090815260026020526040902054821115610c1157600080fd5b5033600081815260026020526040902054610c32908363ffffffff61103916565b600160a060020a038216600090815260026020526040902055600554610c5e908363ffffffff61103916565b600555600854610c74908363ffffffff61103916565b600855604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b600160a060020a031660009081526002602052604090205490565b600154600160a060020a03163314610cec57600080fd5b600160a060020a038116600090815260026020526040902054821115610d1157600080fd5b600160a060020a038116600090815260026020526040902054610c32908363ffffffff61103916565b60408051808201909152600481527f57584c4d00000000000000000000000000000000000000000000000000000000602082015281565b600154600090600160a060020a03163314610d8b57600080fd5b600a5460ff1615610d9b57600080fd5b600a805460ff191660011790556040517f7f95d919e78bdebe8a285e6e33357c2fcb65ccf66e72d7573f9f8f6caad0c4cc90600090a150600190565b600060406044361015610de657fe5b600160a060020a0384161515610dfb57600080fd5b33600090815260026020526040902054831115610e1757600080fd5b33600090815260026020526040902054610e37908463ffffffff61103916565b3360009081526002602052604080822092909255600160a060020a03861681522054610e69908463ffffffff61102c16565b600160a060020a0385166000818152600260209081526040918290209390935580518681529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35060019392505050565b600a5460ff1681565b600080600084915081600160a060020a03166370a08231856040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b158015610f4d57600080fd5b505af1158015610f61573d6000803e3d6000fd5b505050506040513d6020811015610f7757600080fd5b505195945050505050565b60075481565b60065481565b60095481565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b60085481565b600154600160a060020a03163314610fdc57600080fd5b600160a060020a03811615611014576001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b60046020526000908152604090205460ff1681565b8181018281101561061057fe5b60008282111561104557fe5b509003905600a165627a7a723058202606ff87c4ab8e4ec07c3ae41692103b8773791afb102ef8a4c3bc9e56cfe43f0029

Deployed Bytecode Sourcemap

1485:6444:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3687:10;3719:9;3668:16;3746:11;;3743:277;;;3787:14;;3772:11;;:29;;3764:38;;;;;;-1:-1:-1;;;;;3816:19:0;;;;;;:9;:19;;;;;;;;:28;3808:37;;;;;;-1:-1:-1;3873:11:0;;3890:23;3896:8;3873:11;3890:5;:23::i;:::-;-1:-1:-1;;;;;;3933:19:0;;;;;;:9;:19;;;;;:26;;-1:-1:-1;;3933:26:0;3955:4;3933:26;;;;;;3989:11;;:25;;3955:4;3989:18;;3955:4;3989:18;:15;:18;:::i;:::-;:22;:25;:22;:25;:::i;:::-;3975:11;:39;3743:277;4040:1;4031:6;:10;4028:52;;;4048:26;4057:8;4067:6;4048:8;:26::i;:::-;3634:450;;;1485:6444;1789:47;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1789:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;1789:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6094:296;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6094:296:0;-1:-1:-1;;;;;6094:296:0;;;;;;;;;;;;;;;;;;;;;;;;;1953:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1953:40:0;;;;;;;;;;;;;;;;;;;;6957:260;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6957:260:0;-1:-1:-1;;;;;6957:260:0;;;;;5545:537;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5545:537:0;-1:-1:-1;;;;;5545:537:0;;;;;;;;;;;;1901:34;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1901:34:0;;;;6775:170;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6775:170:0;;;;;;7223:353;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7223:353:0;;;;;4090:796;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4090:796:0;-1:-1:-1;;;;;4090:796:0;;;;;;;4898:111;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4898:111:0;-1:-1:-1;;;;;4898:111:0;;;;;7582:336;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7582:336:0;;;-1:-1:-1;;;;;7582:336:0;;;;;1849:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1849:38:0;;;;3073:170;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3073:170:0;;;;5131:402;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5131:402:0;-1:-1:-1;;;;;5131:402:0;;;;;;;2527:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2527:40:0;;;;6552:211;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6552:211:0;-1:-1:-1;;;;;6552:211:0;;;;;;;;;;2044:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2044:35:0;;;;2002:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2002:38:0;;;;2132:65;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2132:65:0;;;;6402:138;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6402:138:0;-1:-1:-1;;;;;6402:138:0;;;;;;;;;;2086:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2086:35:0;;;;2914:151;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2914:151:0;-1:-1:-1;;;;;2914:151:0;;;;;1738:42;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1738:42:0;-1:-1:-1;;;;;1738:42:0;;;;;3255:360;2620:20;;3326:4;;2620:20;;2619:21;2611:30;;;;;;3362:16;;:29;;3383:7;3362:29;:20;:29;:::i;:::-;3343:16;:48;3416:14;;:27;;3435:7;3416:27;:18;:27;:::i;:::-;3399:14;:44;-1:-1:-1;;;;;3472:13:0;;;;;;:8;:13;;;;;;:26;;3490:7;3472:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;3456:13:0;;;;;;:8;:13;;;;;;;;;:42;;;;3514:19;;;;;;;3456:13;;3514:19;;;;;;;;;3549:34;;;;;;;;-1:-1:-1;;;;;3549:34:0;;;3566:1;;3549:34;;;;;;;;;-1:-1:-1;3603:4:0;2652:1;3255:360;;;;:::o;260:98::-;318:7;349:1;345;:5;;;;;;;;;260:98;-1:-1:-1;;;260:98:0:o;52:202::-;110:9;136:6;;132:47;;;-1:-1:-1;166:1:0;159:8;;132:47;-1:-1:-1;193:5:0;;;197:1;193;:5;216;;;;;;;;:10;209:18;;;4090:796;2620:20;;4165:14;;;;2620:20;;2619:21;2611:30;;;;;;4182:11;;4209:7;;4182:24;;4198:7;4182:24;:15;:24;:::i;:::-;:34;;;;;;;;4165:51;;4237:1;4221:17;;4257:11;4246:7;:22;;:50;;;;;4282:14;4272:7;:24;4246:50;4243:87;;;-1:-1:-1;4321:3:0;4312:12;;4243:87;4348:11;4337:7;:22;;:47;;;;;4373:11;4363:7;:21;4337:47;4334:84;;;-1:-1:-1;4409:3:0;4407:1;4400:8;;:12;4334:84;4436:11;4425:7;:22;;:46;;;;;4461:10;4451:7;:20;4425:46;4422:93;;;-1:-1:-1;4506:3:0;4503:2;4496:9;;:13;4422:93;4533:11;4522:7;:22;;:46;;;;;4558:10;4548:7;:20;4522:46;4519:93;;;-1:-1:-1;4603:3:0;4600:2;4593:9;;:13;4519:93;4631:10;4620:7;:21;;:42;;;;;4655:7;4645;:17;4620:42;4617:88;;;-1:-1:-1;4696:3:0;4693:2;4686:9;;:13;4617:88;4725:7;4714:18;;4711:63;;-1:-1:-1;4765:3:0;4754:10;;;:14;4711:63;4789:17;:6;4800:5;4789:17;:10;:17;:::i;:::-;4833:14;;4780:26;;-1:-1:-1;4823:24:0;;;4815:33;;;;;;4857:24;4863:9;4874:6;4857:5;:24::i;:::-;;4090:796;;;;:::o;1789:47::-;;;;;;;;;;;;;;;;;;;:::o;6094:296::-;6161:12;6190:11;;;;;:49;;-1:-1:-1;6213:10:0;6205:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6205:29:0;;;;;;;;;;:34;;6190:49;6186:72;;;-1:-1:-1;6250:5:0;6243:12;;6186:72;6276:10;6268:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6268:29:0;;;;;;;;;;;;:38;;;6322;;;;;;;6268:29;;6276:10;6322:38;;;;;;;;;;;-1:-1:-1;6378:4:0;6094:296;;;;:::o;1953:40::-;;;;:::o;6957:260::-;2727:5;;7038:4;;;;;;-1:-1:-1;;;;;2727:5:0;2713:10;:19;2705:28;;;;;;7132:30;;;;;;7156:4;7132:30;;;;;;7089:14;;-1:-1:-1;;;;;;7132:15:0;;;;;:30;;;;;;;;;;;;;;-1:-1:-1;7132:15:0;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;7132:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;7132:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7132:30:0;7195:5;;7180:29;;;;;;-1:-1:-1;;;;;7195:5:0;;;7180:29;;;;;;;;;;;;7132:30;;-1:-1:-1;7180:14:0;;;;;;:29;;;;;7132:30;;7180:29;;;;;;;;7195:5;7180:14;:29;;;5:2:-1;;;;30:1;27;20:12;5:2;7180:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;7180:29:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7180:29:0;;6957:260;-1:-1:-1;;;;6957:260:0:o;5545:537::-;5652:12;5628:6;5090:8;5071;:27;;5064:35;;;;-1:-1:-1;;;;;5687:17:0;;;;5679:26;;;;;;-1:-1:-1;;;;;5735:15:0;;;;;;:8;:15;;;;;;5724:26;;;5716:35;;;;;;-1:-1:-1;;;;;5781:14:0;;;;;;:7;:14;;;;;;;;5796:10;5781:26;;;;;;;;5770:37;;;5762:46;;;;;;-1:-1:-1;;;;;5847:15:0;;;;;;:8;:15;;;;;;:28;;5867:7;5847:28;:19;:28;:::i;:::-;-1:-1:-1;;;;;5829:15:0;;;;;;:8;:15;;;;;;;;:46;;;;5915:7;:14;;;;;5930:10;5915:26;;;;;;:39;;5946:7;5915:39;:30;:39;:::i;:::-;-1:-1:-1;;;;;5886:14:0;;;;;;;:7;:14;;;;;;;;5901:10;5886:26;;;;;;;:68;;;;5981:13;;;;;:8;:13;;;;;:26;;5999:7;5981:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;5965:13:0;;;;;;;:8;:13;;;;;;;;;:42;;;;6023:29;;;;;;;5965:13;;6023:29;;;;;;;;;;;;;-1:-1:-1;6070:4:0;;5545:537;-1:-1:-1;;;;5545:537:0:o;1901:34::-;1933:2;1901:34;:::o;6775:170::-;2727:5;;6823:17;;;;-1:-1:-1;;;;;2727:5:0;2713:10;:19;2705:28;;;;;;-1:-1:-1;;6909:5:0;;:28;;6843:4;;6881:17;;;-1:-1:-1;;;;;6909:5:0;;;;:28;;;;;6881:17;;6909:5;:28;:5;:28;6881:17;6909:5;:28;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;6909:28:0;6775:170;;:::o;7223:353::-;2727:5;;7341:14;;-1:-1:-1;;;;;2727:5:0;2713:10;:19;2705:28;;;;;;7308:10;7299:20;;;;:8;:20;;;;;;7289:30;;;7281:39;;;;;;-1:-1:-1;7358:10:0;7398:16;;;;:8;:16;;;;;;:28;;7419:6;7398:28;:20;:28;:::i;:::-;-1:-1:-1;;;;;7379:16:0;;;;;;:8;:16;;;;;:47;7451:11;;:23;;7467:6;7451:23;:15;:23;:::i;:::-;7437:11;:37;7504:16;;:28;;7525:6;7504:28;:20;:28;:::i;:::-;7485:16;:47;7548:20;;;;;;;;-1:-1:-1;;;;;7548:20:0;;;;;;;;;;;;;7223:353;;:::o;4898:111::-;-1:-1:-1;;;;;4985:16:0;4958:7;4985:16;;;:8;:16;;;;;;;4898:111::o;7582:336::-;2727:5;;-1:-1:-1;;;;;2727:5:0;2713:10;:19;2705:28;;;;;;-1:-1:-1;;;;;7679:17:0;;;;;;:8;:17;;;;;;7669:27;;;7661:36;;;;;;-1:-1:-1;;;;;7738:17:0;;;;;;:8;:17;;;;;;:29;;7760:6;7738:29;:21;:29;:::i;1849:38::-;;;;;;;;;;;;;;;;;;;:::o;3073:170::-;2727:5;;3138:4;;-1:-1:-1;;;;;2727:5:0;2713:10;:19;2705:28;;;;;;2620:20;;;;2619:21;2611:30;;;;;;3155:20;:27;;-1:-1:-1;;3155:27:0;3178:4;3155:27;;;3198:15;;;;3155:20;;3198:15;-1:-1:-1;3231:4:0;3073:170;:::o;5131:402::-;5219:12;5195:6;5090:8;5071;:27;;5064:35;;;;-1:-1:-1;;;;;5254:17:0;;;;5246:26;;;;;;5311:10;5302:20;;;;:8;:20;;;;;;5291:31;;;5283:40;;;;;;5376:10;5367:20;;;;:8;:20;;;;;;:33;;5392:7;5367:33;:24;:33;:::i;:::-;5353:10;5344:20;;;;:8;:20;;;;;;:56;;;;-1:-1:-1;;;;;5427:13:0;;;;;;:26;;5445:7;5427:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;5411:13:0;;;;;;:8;:13;;;;;;;;;:42;;;;5469:34;;;;;;;5411:13;;5478:10;;5469:34;;;;;;;;;;-1:-1:-1;5521:4:0;;5131:402;-1:-1:-1;;;5131:402:0:o;2527:40::-;;;;;;:::o;6552:211::-;6637:4;6653:14;6707:8;6683:12;6653:43;;6718:1;-1:-1:-1;;;;;6718:11:0;;6730:3;6718:16;;;;;;;;;;;;;-1:-1:-1;;;;;6718:16:0;-1:-1:-1;;;;;6718:16:0;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6718:16:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;6718:16:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;6718:16:0;;6552:211;-1:-1:-1;;;;;6552:211:0:o;2044:35::-;;;;:::o;2002:38::-;;;;:::o;2132:65::-;;;;:::o;6402:138::-;-1:-1:-1;;;;;6507:15:0;;;6480:7;6507:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;6402:138::o;2086:35::-;;;;:::o;2914:151::-;2727:5;;-1:-1:-1;;;;;2727:5:0;2713:10;:19;2705:28;;;;;;-1:-1:-1;;;;;2991:22:0;;;2987:71;;3030:5;:16;;-1:-1:-1;;3030:16:0;-1:-1:-1;;;;;3030:16:0;;;;;2987:71;2914:151;:::o;1738:42::-;;;;;;;;;;;;;;;:::o;493:141::-;577:5;;;600:6;;;;593:14;;;364:123;422:7;449:6;;;;442:14;;;;-1:-1:-1;474:5:0;;;364:123::o

Swarm Source

bzzr://2606ff87c4ab8e4ec07c3ae41692103b8773791afb102ef8a4c3bc9e56cfe43f
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.